Sign In

Ingredients

Retrieve available ingredients used in recipes.

GET /{locale}-{country}/ingredients

List all available ingredients with pagination.

Query Parameters

Parameter Type Description
search string Filter ingredients by name
per_page integer Results per page (10-200, default 50)
sort string Sort by: created_at (default) or updated_at, always descending

Response Fields

Field Type Description
id integer Ingredient ID
name string Ingredient name (localized)
created_at datetime Creation timestamp
updated_at datetime Last update timestamp

Example Request

curl -X GET "https:///de-DE/ingredients" \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Accept: application/json"

Pre-Release API (vunknown)

This API is currently in pre-release. Endpoints, response formats, and features may change without notice until version 1.0.0 is released. Use in production at your own risk.