REST API v1

Developer
API

Integrate award data and verification into your applications

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

100 requests/day
Pro
Popular

For production applications

10,000 requests/day
Enterprise

For high-volume integrations

Unlimited
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

Start building with Awardee

Get your API key and integrate award data into your application in minutes.