Skip to main content

🔍 Get an Audience

Returns a specific audience by UUID.

📤 Request Example

curl -X GET https://betaapi.audiohook.com/v2/companies/:companyUUID/audiences/test-audience-uuid/ \
  -H "Authorization: Bearer ${API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "request_headers": [
      { "name": "X-Request-Header", "value": "Header value" }
    ]
}'

✅ Response Example

{
  "Audiences": {
    "id": "test-audience-uuid",
    "name": "Test audience",
    "type": 1,
    "tags": ["tag1", "tag2"],
    "creation_date": "2022-08-25 22:42:23.665578",
    "first_party": [
      {"type": "url", "value": "http://test.com"},
      {"type": "url", "value": "http://new.com"}
    ]
  }
}

🌐 HTTP Request

GET /v2/companies/:companyUUID/audiences/:audienceUUID