Skip to content

Dinosaurs by Diet

GET {baseUrl}/api/v1/dinosaurs/diet/{diet}`

Returns all dinosaurs matching a specific diet.

ParameterTypeRequiredDescriptionExample
dietstringYesThe diet type of dinosaurs to retrieve"herbivore"

Valid Values: carnivore, herbivore, omnivore, piscivore

{
"count": 650,
"data": [
{
"id": 1118,
"name": "Zephyrosaurus",
"temporalRange": "Early Cretaceous, ~113 Ma",
"diet": "herbivore",
"locomotionType": "biped",
"description": "...",
"classificationInfo": {...},
"image": {...},
"source": {...}
}
]
}

Demo