Sponsorship Tiers API
Define sponsorship tier levels and benefits
Overview
The Sponsorship Tiers API allows you to define different levels of sponsorship for your event, including pricing, benefits, and limits.
Endpoints
List sponsorship tiers
GET
/sponsorship-tiersGet all sponsorship tiers for an event.
Example request
curl -X GET "https://eventnerds.com/api/developer/v1/sponsorship-tiers?event_id=EVENT_ID" \
-H "Authorization: Bearer YOUR_API_KEY"Create sponsorship tier
POST
/sponsorship-tiersCreate a new sponsorship tier with pricing and benefits.
Example request
curl -X POST "https://eventnerds.com/api/developer/v1/sponsorship-tiers" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"event_id": "EVENT_ID",
"name": "Platinum",
"level": 1,
"price": 25000,
"benefits": ["Logo on website", "Booth space", "5 tickets"],
"max_sponsors": 3
}'