Browse docs and collections
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/ingredients/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/ingredients/12" ); const ingredient = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/ingredients.d.ts https://example-data.com/types/ingredients.d.ts
import type { Ingredient } from "./types/ingredients";
const res = await fetch(
"https://example-data.com/api/v1/ingredients/12"
);
const ingredient = (await res.json()) as Ingredient; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/ingredients/12"
)
ingredient = res.json() Response
{
"id": 12,
"name": "Basmati Rice",
"slug": "basmati-rice-12",
"foodCategoryId": 6,
"unit": "g",
"defaultPricePerUnit": 2.98,
"currency": "USD"
}