curl --request POST \
--url https://api.eventory.ai/eventory/data/events/add \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"event_url": "https://www.viagogo.com/Concert-Tickets/Rock-and-Pop/Artist-Tickets/E-160973997",
"viagogo_event_id": "160973997"
}
'{
"status": "success",
"data": {
"event_id": "5b1c6c3e-2f5c-4c1e-9a4e-1c2d3e4f5a6b"
}
}Add event to tracking
Registers an event so that Eventory starts collecting market data for it.
Supply exactly one source: a Viagogo pair (event_url + viagogo_event_id)
or a Ticketmaster pair (ticketmaster_event_url + ticketmaster_event_id).
Data for a newly added event accumulates over time; the first calls to the event endpoints may return empty statistics.
Cost: 1 credit.
curl --request POST \
--url https://api.eventory.ai/eventory/data/events/add \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '
{
"event_url": "https://www.viagogo.com/Concert-Tickets/Rock-and-Pop/Artist-Tickets/E-160973997",
"viagogo_event_id": "160973997"
}
'{
"status": "success",
"data": {
"event_id": "5b1c6c3e-2f5c-4c1e-9a4e-1c2d3e4f5a6b"
}
}Authorizations
Your Eventory API key. Sent as the apikey request header.
Body
Exactly one source mode. Never both, never neither.
Viagogo event URL. Required with viagogo_event_id.
Numeric Viagogo event id (without the E- prefix). Required with event_url.
^\d+$Ticketmaster event URL. Required with ticketmaster_event_id.
Ticketmaster event id. Required with ticketmaster_event_url.
Optional existing Eventory event UUID to attach the source to.