curl --request GET \
--url https://api.example.com/api/horses{
"success": true,
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"seller_id": {
"_id": "507f191e810c19729de860ea",
"full_name": "John Smith",
"seller_profile": {
"is_verified_badge": true
}
},
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "San Isidro",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 45000,
"currency": "USD",
"photos": [
{
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"url": "https://youtube.com/watch?v=abc123",
"embed_url": "https://www.youtube.com/embed/abc123",
"video_type": "competition",
"title": "Thunder jumping 1.40m",
"recorded_at": "2026-02-15T00:00:00Z",
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"status": "active",
"views_count": 234,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:30:00Z"
}
],
"pagination": {
"page": 1,
"limit": 12,
"total": 45,
"pages": 4
}
}
List active horse listings with filtering, pagination, and sorting
curl --request GET \
--url https://api.example.com/api/horses{
"success": true,
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"seller_id": {
"_id": "507f191e810c19729de860ea",
"full_name": "John Smith",
"seller_profile": {
"is_verified_badge": true
}
},
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "San Isidro",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 45000,
"currency": "USD",
"photos": [
{
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"url": "https://youtube.com/watch?v=abc123",
"embed_url": "https://www.youtube.com/embed/abc123",
"video_type": "competition",
"title": "Thunder jumping 1.40m",
"recorded_at": "2026-02-15T00:00:00Z",
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"status": "active",
"views_count": 234,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:30:00Z"
}
],
"pagination": {
"page": 1,
"limit": 12,
"total": 45,
"pages": 4
}
}
created_at - Newest first (default)price_asc - Price low to highprice_desc - Price high to lowage - Age ascendingcurl -X GET "https://api.horsetrust.com/api/horses?breed=thoroughbred&discipline=jumping&page=1&limit=12&sort=price_asc" \
-H "Content-Type: application/json"
{
"success": true,
"data": [
{
"_id": "507f1f77bcf86cd799439011",
"seller_id": {
"_id": "507f191e810c19729de860ea",
"full_name": "John Smith",
"seller_profile": {
"is_verified_badge": true
}
},
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "San Isidro",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 45000,
"currency": "USD",
"photos": [
{
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"url": "https://youtube.com/watch?v=abc123",
"embed_url": "https://www.youtube.com/embed/abc123",
"video_type": "competition",
"title": "Thunder jumping 1.40m",
"recorded_at": "2026-02-15T00:00:00Z",
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"status": "active",
"views_count": 234,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:30:00Z"
}
],
"pagination": {
"page": 1,
"limit": 12,
"total": 45,
"pages": 4
}
}
{
"success": false,
"message": "Server error"
}