Introduction
API Reference
- Events
- Bookings
- Channels
- Lists
- Passes
- Subscriptions
- Tickets
- Users
- Payments
- Refunds
- Wallet Movement
Events
Get event by id
Get an event by its identifier.
GET
/
events
/
{eventId}
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/events/{eventId} \
--header 'integration_id: <api-key>' \
--header 'secret: <api-key>' \
--header 'x-api-key: <api-key>'
{
"success": true,
"data": {
"_id": "Pl4gr84v20xqu01js0ybj42s6vYtIz1T",
"date": 1664143200,
"end": 1663911000,
"flyer": "https://www.your-domain.com/flyer.jpg",
"name": "Saturday Night",
"slug": "saturday-night-26-09-2022",
"start": 1663884000,
"url": "https://www.fourvenues.com/gengis-kan/events/saturday-night-26-09-2022",
"description": "This event takes place every Thursday",
"age": 18,
"music_genres": "techno",
"outfit": "casual",
"location_town": "Madrid",
"artists": [
"David Guetta",
"Martin Garrix"
]
}
}
Authorizations
Identifier of the integration (Auth v1)
Secret of the organization (Auth v1)
API key (Auth v2)
Path Parameters
Event identifier.
Response
200
application/json
HTTP OK
Example:
true
Unique ID of the event.
Example:
"Pl4gr84v20xqu01js0ybj42s6vYtIz1T"
Start of the day of the event (unix).
Example:
1664143200
End date of the event (unix).
Example:
1663911000
Flyer.
Example:
"https://www.your-domain.com/flyer.jpg"
Name of the event.
Example:
"Saturday Night"
Slug.
Example:
"saturday-night-26-09-2022"
Start date of the event (unix).
Example:
1663884000
URL of the event.
Example:
"https://www.fourvenues.com/gengis-kan/events/saturday-night-26-09-2022"
Description of the event.
Example:
"This event takes place every Thursday"
Min age of the event.
Example:
18
Event music genres.
Available options:
hits
, urban
, pop
, rock
, remember
, techno
, house
, edm
, trap
, reggaeton
, latin
, salsa
, bachata
, kizomba
, r&b
, dance
, indie
, afrobeat
, minimal
, underground
, tech-house
, drum-and-bass
, acid-house
, chill
, hard-techno
, melodic-techno
, hip-hop
, reggae
, disco
, sing-along
, acoustic
, trance
, classical
, soul
, blues
, jazz
, metal
, old-school
Example:
"techno"
Outfit of the event.
Available options:
free
, casual
, half-label
, label
, fixed-up
Example:
"casual"
Town where the event will take place.
Example:
"Madrid"
Artists of the event.
Example:
["David Guetta", "Martin Garrix"]
curl --request GET \
--url https://api-alpha.fourvenues.com/integrations/events/{eventId} \
--header 'integration_id: <api-key>' \
--header 'secret: <api-key>' \
--header 'x-api-key: <api-key>'
{
"success": true,
"data": {
"_id": "Pl4gr84v20xqu01js0ybj42s6vYtIz1T",
"date": 1664143200,
"end": 1663911000,
"flyer": "https://www.your-domain.com/flyer.jpg",
"name": "Saturday Night",
"slug": "saturday-night-26-09-2022",
"start": 1663884000,
"url": "https://www.fourvenues.com/gengis-kan/events/saturday-night-26-09-2022",
"description": "This event takes place every Thursday",
"age": 18,
"music_genres": "techno",
"outfit": "casual",
"location_town": "Madrid",
"artists": [
"David Guetta",
"Martin Garrix"
]
}
}