Get specific event by its ID
/api/v1/events/{event_id}
API to retrieve a specific event by its event ID. Refer to the Event Object for more details.
Access Token
is required via Bearer token authentication. Refer to the Authentication section for more details.
{
"id": "string",
"label": {
"id": "string",
"name": {
"ko": "string",
"en": "string"
}
},
"confidence": 0,
"mic": {
"id": "string",
"name": "string",
"location": {
"latitude": -90,
"longitude": -180
}
},
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}
const response = await fetch('https://openapi.deeplyinc.com/api/v1/events/sample_event_123', {
method: 'GET',
headers: {
"Authorization": "Bearer YOUR_ACCESS_TOKEN"
}
});
const data = await response.json();
Unique identifier of the event