curl/v1/awards
Example Request
curl https://api.awardee.org/v1/awards \ -H "Authorization: Bearer YOUR_API_KEY" \ -G -d "industry=technology" \ -d "limit=10"
200JSON Response
Successful Response
{
"data": [
{
"id": "award_abc123",
"name": "Global Tech Innovation Award",
"industry": "Technology",
"prestige": "gold",
"deadline": "2026-03-15",
"entry_fee": null,
"url": "https://awardee.org/awards/global-tech-innovation"
}
],
"meta": {
"total": 142,
"page": 1,
"per_page": 10
}
}Rate limits
Rate Limits
Free
For testing and small projects
Pro
Popular
For production applications
Enterprise
For high-volume integrations
Authentication
API Key Authentication
All API requests require a Bearer token in the Authorization header. Generate your API key from your Awardee dashboard after registration.
Authorization: Bearer YOUR_API_KEY # Example: curl https://api.awardee.org/v1/awards \ -H "Authorization: Bearer ak_live_abc123def456"
API keys are generated per project in your dashboard
All requests must use HTTPS
CORS enabled for client-side integrations