Quote attribution API with semantic search capabilities
Get your API key
Visit API Keys to create a new key
Make your first request
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.airquote.com/v1/randomExplore endpoints
See available endpoints below for search, attribution, and more
All API requests (except quote-of-day) require authentication using an API key.
Include in request headers:
Authorization: Bearer aq_your_api_key_here| Tier | Per Minute | Per Day | Burst |
|---|---|---|---|
| Free | 10 requests | 100 requests | 5 requests |
| Pro | 60 requests | 10,000 requests | 20 requests |
| Enterprise | 600 requests | 100,000 requests | 100 requests |
Rate limit information is included in response headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset
Endpoint
GET /api/v1/quote-of-dayResponse
{
"success": true,
"data": {
"id": 3,
"text": "Innovation distinguishes...",
"author": "Steve Jobs",
"author_details": {...},
"source": {...},
"year": 1985,
"topics": ["innovation", "leadership"],
"verification_level": 2,
"language": "en"
},
"meta": {
"date": "2025-09-28"
}
}Endpoint
GET /api/v1/randomQuery Parameters
verified_only - Return only verified quotes (boolean)topics - Filter by topics (comma-separated)author - Filter by author namelanguage - Filter by language codeEndpoint
POST /api/v1/searchRequest Body
{
"query": "innovation",
"type": "semantic", // or "keyword"
"limit": 10,
"verified_only": true,
"topics": ["technology", "business"]
}Search Types
semantic - AI-powered similarity searchkeyword - Traditional text matchingEndpoint
POST /api/v1/enhanceRequest Body
{
"text": "To be or not to be",
"enhance_options": {
"add_context": true,
"verify_attribution": true,
"find_original": true,
"add_metadata": true
}
}Features
200 OKRequest successful400 Bad RequestInvalid request parameters401 UnauthorizedMissing or invalid API key429 Too Many RequestsRate limit exceeded500 Internal Server ErrorServer error occurredOfficial SDKs coming soon for:
We're here to help you integrate Airquote into your application.