GET
/
v1
/
events
/
{eventId}
/
sponsors
Get all sponsor details
curl --request GET \
  --url https://api.zuddl.com/v1/events/{eventId}/sponsors \
  --header 'Authorization: <api-key>'
{
  "pagination": {
    "next": "/{apiEndpoint}?page=3",
    "current": "/{apiEndpoint}?page=2",
    "previous": "/{apiEndpoint}?page=1"
  },
  "data": [
    {
      "kind": "<string>",
      "url": "<string>",
      "id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
      "name": "Acme Corp",
      "title": "Acme's sponsorship",
      "description": "Acme Corp is a leading...",
      "websiteUrl": "https://acme.com",
      "logoUrl": "https://example.com/sponsors/acme_logo.png",
      "email": "sponsorship@acme.com",
      "coverImageUrl": "https://example.com/sponsors/acme_cover.png",
      "tier": {
        "tierId": "tier-gold",
        "tierName": "Gold"
      },
      "booth": {
        "boothId": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c4f",
        "boothName": "Acme Booth"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Provide your API key secret in the Authorization header

Path Parameters

eventId
string
required

Event ID

Query Parameters

sort
string

Sort query in format:

The following fields are sortable:

  • name
  • title
page
number

Page number (default: 1)

size
number

Page size (default: 10, max: 50)

Response

200
application/json

List of sponsors retrieved successfully

The response is of type object.