Skip to main content
GET
/
api
/
research
/
v1
/
list-tech-events
ListTechEvents
curl --request GET \
  --url https://api.example.com/api/research/v1/list-tech-events
{
  "success": true,
  "count": 123,
  "conferenceCount": 123,
  "mappableCount": 123,
  "lastUpdated": "<string>",
  "events": [
    {
      "id": "<string>",
      "title": "<string>",
      "type": "<string>",
      "location": "<string>",
      "coords": {
        "lat": 123,
        "lng": 123,
        "country": "<string>",
        "original": "<string>",
        "virtual": true
      },
      "startDate": "<string>",
      "endDate": "<string>",
      "url": "<string>",
      "source": "<string>",
      "description": "<string>"
    }
  ],
  "error": "<string>"
}

Query Parameters

type
string

Event type filter: "all", "conferences", "earnings", "ipo", "other". Empty = all.

mappable
boolean

Only events with non-virtual coordinates.

limit
integer<int32>

Max events to return (0 = unlimited).

days
integer<int32>

Events within N days from now (0 = unlimited).

Response

Successful response

ListTechEventsResponse contains tech events matching the request.

success
boolean

Whether the request succeeded.

count
integer<int32>

Total event count in response.

conferenceCount
integer<int32>

Number of conference-type events.

mappableCount
integer<int32>

Number of mappable (non-virtual with coords) events.

lastUpdated
string

ISO 8601 timestamp of last update.

events
object[]
error
string

Error message if success is false.