Countries
Retrieve available countries supported by the API.
GET
/countries
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| per_page | integer | Results per page (10-200, default 50) |
Response Fields
| Field | Type | Description |
|---|---|---|
| id | integer | Country ID |
| code | string | Country code (e.g., DE, AT, CH) |
| recipes_count | integer | Number of recipes available |
| ingredients_count | integer | Number of ingredients available |
| created_at | datetime | Creation timestamp |
| updated_at | datetime | Last update timestamp |
Example Request
curl -X GET "https:///countries" \
-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.