Tiers
Using a key
Pass it in theX-API-Key header:
Reading your limits
Every response carries your current window:X-RateLimit-Reset is a Unix timestamp — when your window starts over.
When you exceed the limit you get a 429:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Anonymous by default; an API key raises your limits.
| Tier | Limit | How |
|---|---|---|
| Anonymous | 60 requests / hour per IP | Just call the API |
| Free key | 1,000 requests / day | Email us — tell us what you’re building |
| Patron key | 10,000 requests / day | Included with a Patron membership |
X-API-Key header:
curl "https://venivididavinci.com/api/v1/search?q=anatomy" \
-H "X-API-Key: your-key-here"
X-RateLimit-Limit: 60
X-RateLimit-Remaining: 41
X-RateLimit-Reset: 1784418134
X-RateLimit-Reset is a Unix timestamp — when your window starts over.
When you exceed the limit you get a 429:
{
"error": {
"code": "rate_limited",
"message": "Anonymous limit is 60 requests/hour. Pass an X-API-Key header for more."
}
}