Skip to main content
GET
/
advertisers
/
{advertiserID}
Get Advertiser
curl --request GET \
  --url https://api.embedads.com/advertisers/{advertiserID} \
  --header 'Authorization: Bearer <token>'
{
    "id": "123",
    "platform_id": "456",
    "created_at": "2020-01-01T00:00:00Z",
    "name": "Advertiser 1",
    "website_url": "https://example.com",
    "frozen": false,
    "hidden": false
}

Path Parameters

advertiserID
string
required
The ID of the advertiser.

Response

id
string
The advertiser ID.
platform_id
string
The platform ID.
created_at
string
A timestamp of when the user was created.
name
string
The name of the advertiser.
website_url
string
The website URL of the advertiser.
frozen
boolean
Whether the advertiser is frozen.
hidden
boolean
Whether the advertiser is hidden.
{
    "id": "123",
    "platform_id": "456",
    "created_at": "2020-01-01T00:00:00Z",
    "name": "Advertiser 1",
    "website_url": "https://example.com",
    "frozen": false,
    "hidden": false
}