v1
latestOpenAPI 3.1.02026-07-22285495.1 KBSponsors
Get all sponsor details
Use this endpoint to retrieve the details of all sponsors added to a particular event type in your Zuddl organization. You can use query parameters such as filter, pagination, or sort to customize.
Required API key scopes: READ
get/v1/events/{eventId}/sponsors
Path parameters
eventIdstring required
Event ID
Query parameters
sortstring
Sort query in format:
The following fields are sortable:
- name
- title
pagenumber
Page number (default: 1)
sizenumber
Page size (default: 10, max: 50)
Response
List of sponsors retrieved successfully
Example response
{
"pagination": {
"next": "/{apiEndpoint}?page=3",
"current": "/{apiEndpoint}?page=2",
"previous": "/{apiEndpoint}?page=1"
},
"data": [
{
"id": "4fcebf73-3ddb-4fe6-b56d-5dd7dedb7c3d",
"name": "Acme Corp",
"title": "Acme's sponsorship",
"description": "<p>Acme Corp is a <strong>leading</strong> provider of...</p>",
"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"
}
}
]
}