Questions tagged [edamam-api]
23 questions
2
votes
2 answers
JavaScript fetch() with JSON parameter
I'm attempting to request nutrients from the Edamam Food Nutrition api using Node.JS. They provide this example using curl curl -d @food.json -H "Content-Type: application/json"…

Michael Nishiguchi
- 63
- 7
1
vote
0 answers
Using GET and POST to extract Edamam API?
I'm trying to extract the recipe data from Edamam API. All of my GET/POST requests fail.
I've tried to extract the data through Python, which works seamlessly but R gives "must not be NULL"
Here is the code:
library(httr)
library(jsonlite)
# Store…

boltapeyji
- 11
- 2
1
vote
0 answers
Not able to access more than 2 food recipe requests at a time from edamam api
I am creating a recipe search application using react and edamam API but I am not able to access more than 2 food recipe requests at a time from edamam API while for free usage we can access up to 10 different food recipes.
Pls tell what I am doing…

notauser123
- 7
- 4
1
vote
1 answer
I would like to grab certain results from an API and display it onto my page
I'm currently using the Recipe API (https://developer.edamam.com/edamam-docs-recipe-api) and what I'm trying to achieve is have the user input a recipe in the search field and return only the title, image and ingredients from the API. I'm using a…

Diego Solorio
- 13
- 2
0
votes
0 answers
I'm building a website using the Edamam api from rapidapi. Back end looks great but no recipes appear on the front end
Good afternoon! I'm building a website that used Rapidapi: Edamam. I'm using HTML, CSS, JavaScript, and JavaScript: Jquery. My project URL: https://github.com/Sbiggs1985/Hack_sprint
My code looks great on the back end. The front end has the search…
0
votes
1 answer
The Filter-function in my Recipe-App is not possible
I have developed a small recipe app. This one uses the edamame api for it. I have implemented a filter function which should filter by criteria like diet and health. In addition, it should also be possible to filter by calories. For this, the user…

warrior.0779
- 3
- 3
0
votes
0 answers
How to load more results in Select2 Pagination using URL from JSON Response
I’m working with Edamam API and I was able to load the first page. Now I’d like to load the next page. I have added the infinite scroll but it is loading the same first-page result over and over again.
This is my AJAX;
ajax: {
theme:…

iAmBorgy
- 73
- 9
0
votes
0 answers
How to load next set of api results using NextURL from Edamam API
https://github.com/jhconger/FindYourRecipe
Edamam API only returns 20 results at a time. I would like to load the next set of 20 results with a "next" button then have the option to return to the previous results with a "prev" button. I have tried…

JUSTIN CONGER
- 1
- 2
0
votes
1 answer
How to limit my api result with edamam API
I am trying to make a call to the edamam API to just get 1 item, right now when I call it I get a lot of results which I don't need, is there a query I can use to limit the results?
I have tried to put maxResults at the end but id doesn't change my…

Miguel Reid Ruiz
- 40
- 8
0
votes
2 answers
How to tell Python to ignore part of API request?
had a few Python classes and tinkering with an old project. I'm using an API to help the user decide on a recipe to cook. One of the questions is if they have dietary/meal type requirements. The API documentation has parameters for the requirements…
0
votes
1 answer
Next.js API Application :: TypeError: Cannot read property 'map' of undefined
I have just been introduced to Next.js and have been tasked to create a dynamic website that uses data retrieved from an API. The web app should contain at least two pages: an index page and a page that displays details about the topic that the user…

Chanelle Bösiger
- 155
- 1
- 17
0
votes
1 answer
How to filter an API Search result in Python?
I am using the edamam recipe api and have been trying to filter the response by only saving recipes with a number of calories > the max inputed by the user. I keep getting an error. This is the code:
import requests
import pandas as pd
def…

Polly Luisa
- 1
- 1
0
votes
1 answer
How to Import API data into a Material UI Card
I am currently making a Recipe app and I am pulling data from this API called edamame. I imported cards from Material UI and imported it into my .js file that calls the API for the data. I stored the data in a const called recipes but I am…

Aroxis
- 67
- 5
0
votes
1 answer
Database API search and show result in List (React Native)
export class Diet extends Component {
render() {
return (
user13132748
0
votes
1 answer