curl --location --request QUERY 'https://api.petstoreapi.com/v1/pets' \
--header 'X-Tenant-ID: 550e8400-e29b-41d4-a716-446655440000' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"criteria": {
"species": [
"DOG"
],
"ageRange": {
"min": 12,
"max": 72
},
"size": [
"medium",
"large"
],
"compatibility": {
"goodWithKids": true
},
"medical": {
"vaccinated": true,
"spayedNeutered": true
}
},
"sort": {
"field": "age_months",
"order": "asc"
},
"pagination": {
"page": 1,
"limit": 20
}
}'{
"data": [
{
"id": "019b4132-70aa-764f-b315-e2803d882a24",
"species": "DOG",
"name": "Whiskers",
"breed": "Domestic Shorthair",
"ageMonths": 18,
"size": "SMALL",
"color": "Orange Tabby",
"gender": "MALE",
"goodWithKids": true,
"price": "75.00",
"currency": "USD",
"description": "string",
"status": "AVAILABLE",
"createdAt": "2025-12-21T13:56:23Z",
"updatedAt": "2025-12-21T13:56:23Z",
"tenantId": "550e8400-e29b-41d4-a716-446655440000",
"photos": [
"http://example.com"
],
"medicalInfo": {
"spayedNeutered": true,
"vaccinated": true,
"microchipped": true,
"specialNeeds": true,
"healthNotes": "string"
}
}
],
"pagination": {}
}