curl --request PUT \
--url https://api.example.com/api/horses/:id \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"age": 123,
"breed": "<string>",
"discipline": "<string>",
"pedigree": "<string>",
"location": {
"country": "<string>",
"region": "<string>",
"city": "<string>",
"coordinates": {
"lat": 123,
"lng": 123
}
},
"price": 123,
"currency": "<string>",
"photos": [
{
"url": "<string>",
"caption": "<string>",
"is_cover": true
}
],
"videos": [
{
"url": "<string>",
"video_type": "<string>",
"title": "<string>",
"description": "<string>",
"recorded_at": "<string>"
}
],
"status": "<string>"
}
'{
"success": true,
"data": {
"_id": "507f1f77bcf86cd799439011",
"seller_id": "507f191e810c19729de860ea",
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "Pilar",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 42000,
"currency": "USD",
"photos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j1",
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j2",
"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": 235,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:45:00Z"
}
}
Update an existing horse listing (owner or admin)
curl --request PUT \
--url https://api.example.com/api/horses/:id \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"age": 123,
"breed": "<string>",
"discipline": "<string>",
"pedigree": "<string>",
"location": {
"country": "<string>",
"region": "<string>",
"city": "<string>",
"coordinates": {
"lat": 123,
"lng": 123
}
},
"price": 123,
"currency": "<string>",
"photos": [
{
"url": "<string>",
"caption": "<string>",
"is_cover": true
}
],
"videos": [
{
"url": "<string>",
"video_type": "<string>",
"title": "<string>",
"description": "<string>",
"recorded_at": "<string>"
}
],
"status": "<string>"
}
'{
"success": true,
"data": {
"_id": "507f1f77bcf86cd799439011",
"seller_id": "507f191e810c19729de860ea",
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "Pilar",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 42000,
"currency": "USD",
"photos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j1",
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j2",
"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": 235,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:45:00Z"
}
}
seller or admin role
Authorization: Bearer YOUR_JWT_TOKEN
embed_url is auto-regenerated for YouTube/Vimeo URLsupdated_at timestamp is automatically updatedseller_id or views_count via this endpointcurl -X PUT "https://api.horsetrust.com/api/horses/507f1f77bcf86cd799439011" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_JWT_TOKEN" \
-d '{
"price": 42000,
"status": "active",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "Pilar"
}
}'
{
"success": true,
"data": {
"_id": "507f1f77bcf86cd799439011",
"seller_id": "507f191e810c19729de860ea",
"name": "Thunder",
"age": 8,
"breed": "Thoroughbred",
"discipline": "Show Jumping",
"pedigree": "Sire: Storm Cat, Dam: Winning Colors",
"location": {
"country": "Argentina",
"region": "Buenos Aires",
"city": "Pilar",
"coordinates": {
"lat": -34.4708,
"lng": -58.5247
}
},
"price": 42000,
"currency": "USD",
"photos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j1",
"url": "https://cdn.horsetrust.com/photos/abc123.jpg",
"caption": "Thunder at competition",
"is_cover": true,
"uploaded_at": "2026-03-01T10:00:00Z"
}
],
"videos": [
{
"_id": "65f1a2b3c4d5e6f7g8h9i0j2",
"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": 235,
"created_at": "2026-03-01T10:00:00Z",
"updated_at": "2026-03-05T15:45:00Z"
}
}
{
"success": false,
"message": "Invalid horse ID"
}
{
"success": false,
"message": "Validation failed: age: Path `age` (50) is more than maximum (40)"
}
{
"success": false,
"message": "Authentication required"
}
{
"success": false,
"message": "Seller role required"
}
{
"success": false,
"message": "Horse not found or unauthorized"
}
{
"success": false,
"message": "Server error"
}