Edamam Food and Grocery Database

Parser_

parser

The parser access point handles text search for foods as well as filters for the foods like presence specific nutrient content or exclusion of allergens


/parser

Usage and SDK Samples

curl -X GET -H "apieco-key: [[apiKey]]" "https://api.apieco.ir/edmamFood/parser?ingr=&upc="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.Parser_Api;

import java.io.File;
import java.util.*;

public class Parser_ApiExample {

    public static void main(String[] args) {
        ApiClient defaultClient = Configuration.getDefaultApiClient();
        
        // Configure API key authorization: apieco-key
        ApiKeyAuth apieco-key = (ApiKeyAuth) defaultClient.getAuthentication("apieco-key");
        apieco-key.setApiKey("YOUR API KEY");
        // Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
        //apieco-key.setApiKeyPrefix("Token");

        Parser_Api apiInstance = new Parser_Api();
        String apiecoKey = apiecoKey_example; // String | 
        String ingr = ingr_example; // String | A keyword search parameter to be found in the food name. Not required when upc is present.
        String upc = upc_example; // String | A valid UPC code. Not required when ingr is present.
        try {
            inline_response_200 result = apiInstance.parser(apiecoKey, ingr, upc);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling Parser_Api#parser");
            e.printStackTrace();
        }
    }
}
import io.swagger.client.api.Parser_Api;

public class Parser_ApiExample {

    public static void main(String[] args) {
        Parser_Api apiInstance = new Parser_Api();
        String apiecoKey = apiecoKey_example; // String | 
        String ingr = ingr_example; // String | A keyword search parameter to be found in the food name. Not required when upc is present.
        String upc = upc_example; // String | A valid UPC code. Not required when ingr is present.
        try {
            inline_response_200 result = apiInstance.parser(apiecoKey, ingr, upc);
            System.out.println(result);
        } catch (ApiException e) {
            System.err.println("Exception when calling Parser_Api#parser");
            e.printStackTrace();
        }
    }
}
Configuration *apiConfig = [Configuration sharedConfig];

// Configure API key authorization: (authentication scheme: apieco-key)
[apiConfig setApiKey:@"YOUR_API_KEY" forApiKeyIdentifier:@"apieco-key"];
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
//[apiConfig setApiKeyPrefix:@"Bearer" forApiKeyIdentifier:@"apieco-key"];

String *apiecoKey = apiecoKey_example; // 
String *ingr = ingr_example; // A keyword search parameter to be found in the food name. Not required when upc is present. (optional)
String *upc = upc_example; // A valid UPC code. Not required when ingr is present. (optional)

Parser_Api *apiInstance = [[Parser_Api alloc] init];

[apiInstance parserWith:apiecoKey
    ingr:ingr
    upc:upc
              completionHandler: ^(inline_response_200 output, NSError* error) {
                            if (output) {
                                NSLog(@"%@", output);
                            }
                            if (error) {
                                NSLog(@"Error: %@", error);
                            }
                        }];
var EdamamFoodAndGroceryDatabase = require('edamam_food_and_grocery_database');
var defaultClient = EdamamFoodAndGroceryDatabase.ApiClient.instance;

// Configure API key authorization: apieco-key
var apieco-key = defaultClient.authentications['apieco-key'];
apieco-key.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//apieco-key.apiKeyPrefix['apieco-key'] = "Token"

var api = new EdamamFoodAndGroceryDatabase.Parser_Api()

var apiecoKey = apiecoKey_example; // {String} 

var opts = { 
  'ingr': ingr_example, // {String} A keyword search parameter to be found in the food name. Not required when upc is present.
  'upc': upc_example // {String} A valid UPC code. Not required when ingr is present.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.parser(apiecoKey, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;

namespace Example
{
    public class parserExample
    {
        public void main()
        {
            
            // Configure API key authorization: apieco-key
            Configuration.Default.ApiKey.Add("apieco-key", "YOUR_API_KEY");
            // Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
            // Configuration.Default.ApiKeyPrefix.Add("apieco-key", "Bearer");

            var apiInstance = new Parser_Api();
            var apiecoKey = apiecoKey_example;  // String | 
            var ingr = ingr_example;  // String | A keyword search parameter to be found in the food name. Not required when upc is present. (optional) 
            var upc = upc_example;  // String | A valid UPC code. Not required when ingr is present. (optional) 

            try
            {
                inline_response_200 result = apiInstance.parser(apiecoKey, ingr, upc);
                Debug.WriteLine(result);
            }
            catch (Exception e)
            {
                Debug.Print("Exception when calling Parser_Api.parser: " + e.Message );
            }
        }
    }
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');

// Configure API key authorization: apieco-key
Swagger\Client\Configuration::getDefaultConfiguration()->setApiKey('apieco-key', 'YOUR_API_KEY');
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Swagger\Client\Configuration::getDefaultConfiguration()->setApiKeyPrefix('apieco-key', 'Bearer');

$api_instance = new Swagger\Client\Api\Parser_Api();
$apiecoKey = apiecoKey_example; // String | 
$ingr = ingr_example; // String | A keyword search parameter to be found in the food name. Not required when upc is present.
$upc = upc_example; // String | A valid UPC code. Not required when ingr is present.

try {
    $result = $api_instance->parser($apiecoKey, $ingr, $upc);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling Parser_Api->parser: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::Parser_Api;

# Configure API key authorization: apieco-key
$WWW::SwaggerClient::Configuration::api_key->{'apieco-key'} = 'YOUR_API_KEY';
# uncomment below to setup prefix (e.g. Bearer) for API key, if needed
#$WWW::SwaggerClient::Configuration::api_key_prefix->{'apieco-key'} = "Bearer";

my $api_instance = WWW::SwaggerClient::Parser_Api->new();
my $apiecoKey = apiecoKey_example; # String | 
my $ingr = ingr_example; # String | A keyword search parameter to be found in the food name. Not required when upc is present.
my $upc = upc_example; # String | A valid UPC code. Not required when ingr is present.

eval { 
    my $result = $api_instance->parser(apiecoKey => $apiecoKey, ingr => $ingr, upc => $upc);
    print Dumper($result);
};
if ($@) {
    warn "Exception when calling Parser_Api->parser: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint

# Configure API key authorization: apieco-key
swagger_client.configuration.api_key['apieco-key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# swagger_client.configuration.api_key_prefix['apieco-key'] = 'Bearer'

# create an instance of the API class
api_instance = swagger_client.Parser_Api()
apiecoKey = apiecoKey_example # String | 
ingr = ingr_example # String | A keyword search parameter to be found in the food name. Not required when upc is present. (optional)
upc = upc_example # String | A valid UPC code. Not required when ingr is present. (optional)

try: 
    api_response = api_instance.parser(apiecoKey, ingr=ingr, upc=upc)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling Parser_Api->parser: %s\n" % e)

Parameters

Header parameters
Name Description
apieco-key*
String
Required
Query parameters
Name Description
ingr
String
A keyword search parameter to be found in the food name. Not required when upc is present.
upc
String
A valid UPC code. Not required when ingr is present.

Responses

Status: 200 - Succesfull

Status: 401 - wrong code

Status: 405 - Invalid input