Retrieve available recipe labels (e.g., "Family Friendly", "Quick & Easy").
GET
/{locale}-{country}/labels
List all available labels.
|
Parameter
|
Type
|
Description
|
|---|---|---|
| per_page | integer | Results per page (10-200, default 50) |
| sort | string | Sort by: created_at (default) or updated_at, always descending |
|
Field
|
Type
|
Description
|
|---|---|---|
| id | integer | Label ID |
| name | string | Label name (localized) |
| created_at | datetime | Creation timestamp |
| updated_at | datetime | Last update timestamp |
curl -X GET "https://api.hfresh.info/de-DE/labels" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json"