Skip to main content
GET
/
v2
/
hed-outbreaks
/
events
/
source-names
Get Event Sources
curl --request GET \
  --url https://api.example.com/v2/hed-outbreaks/events/source-names \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    "<string>"
  ],
  "has_more": true,
  "next_page": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
string | null

A cursor for pagination across multiple pages of results. Don't include this parameter on the first call. Use the next_page value returned in a previous response to request subsequent results.

num
integer
default:100

Maximum number of sources will be returned by the API call. The maximum acceptable value is 1000

event
string | null

The name of an event

Response

Successful Response

data
string[]
required
has_more
boolean
required
next_page
string | null