cURL
curl --request GET \ --url https://api.evento.so/api/public/v1/events/{eventId} \ --header 'x-evento-api-key: <x-evento-api-key>'
{ "success": true, "message": "<string>", "data": { "id": "<string>", "title": "<string>", "description": "<string>", "cover": "<string>", "location": "<string>", "start_date": "<string>", "end_date": {}, "timezone": "<string>", "status": "<string>", "visibility": "<string>", "cost": {}, "created_at": "<string>", "creator": { "id": "<string>", "username": "<string>", "image": "<string>", "verification_status": {} }, "links": { "spotify_url": {}, "wavlake_url": {} }, "contributions": { "cashapp": {}, "venmo": {}, "paypal": {}, "btc_lightning": {} } } }
Retrieve detailed information about a specific event
GET https://api.evento.so/api/public/v1/events/{eventId}
evt_abc123
Show Event Object Properties
Show Creator Properties
Show Links Properties
Show Contribution Properties
curl -X GET "https://api.evento.so/api/public/v1/events/evt_abc123" \ -H "x-evento-api-key: YOUR_API_KEY"
{ "success": true, "message": "Event details fetched successfully", "data": { "id": "evt_abc123", "title": "Tech Meetup 2024", "description": "Join us for an evening of tech talks and networking with industry leaders", "cover": "https://example.com/event-cover.jpg", "location": "San Francisco, CA", "start_date": "2024-12-15T18:00:00Z", "end_date": "2024-12-15T21:00:00Z", "timezone": "America/Los_Angeles", "status": "published", "visibility": "public", "cost": 0, "created_at": "2024-11-01T10:00:00Z", "creator": { "id": "usr_xyz789", "username": "techorg", "image": "https://example.com/avatar.jpg", "verification_status": "verified" }, "links": { "spotify_url": null, "wavlake_url": null }, "contributions": { "cashapp": "$techorg", "venmo": "@techorg", "paypal": null, "btc_lightning": null } } }
400 - Bad Request
{ "success": false, "message": "Invalid event ID format" }
401 - Unauthorized
{ "success": false, "message": "Not authenticated." }
404 - Not Found
{ "success": false, "message": "Not found." }
500 - Internal Server Error
{ "success": false, "message": "Internal server error" }
status: "published"
visibility: "public"
null