The ROLLIN API, documented.
Verified accessibility data over REST. Get a key, send it in one header, and query 105,000+ scored venues from curl, JavaScript, or Python. This page covers everything from your first request to production.
Getting started
Three steps to your first response.
Get a key
The free tier includes 1,000 requests a month with no credit card. Sign up at the portal.
Get free keyAuthenticate
Send your key in the X-Api-Key header. Keep it in environment variables and never commit secrets.
Make a call
Request /v1/locations with a lat and lng. You get scored venues back as JSON.
Authentication
Send your key in X-Api-Key.
Pull the key from environment variables. Never commit secrets. The unauthenticated /v1/health endpoint is the easiest sanity check.
Recipes
The four calls most integrations start with.
Search nearby venues.
Pass a lat and lng with a radius in meters, filter by minimum score, and paginate with limit. Results come back sorted by accessibility score.
Get full venue detail.
Retrieve one venue by ID: the score, all six features, address, cuisine tags, and last verified timestamp, plus photos and hours on Starter and above.
Submit feedback.
POST corrections, missing venue reports, or verification confirmations. The ROLLIN team reviews every submission, and accurate reports feed back into the score.
Check your quota.
Returns current usage across the per-minute, per-day, and per-month windows for your key, plus your current tier. Useful for showing remaining quota in your own UI.
Endpoints
Eight endpoints cover the whole surface.
The short version. Schemas, parameters, and response shapes for every endpoint live in the full reference.
/api/v1/locationsSearch by lat/lng, city/state, or query string. Paginated./api/v1/locations/:idFull venue detail: score, features, address, photos./api/v1/regionsCoverage stats by state and metro region./api/v1/score/:idDetailed score breakdown by category (Business+)./api/v1/feedbackSubmit accessibility feedback (Developer+)./api/v1/usageCurrent key usage across rate-limit windows./api/v1/trial/*Public trial proxy. IP rate limited, no key required./api/v1/healthAPI status. No auth needed and no quota cost.Rate limits
Per-minute and per-month scale with tier.
Hit a limit and you get a 429 with a Retry-After header. Calls to /v1/health are never counted. Change tiers any time in the portal.
10 / minute
30 / minute
60 / minute
200 / minute
Error codes
Standard HTTP, structured payloads.
Every error returns a JSON body with a code, a message, and hints for resolution when they apply.
Production checklist
Before you ship to real users.
Six things that turn a working integration into one you can put in front of real users.
- 01
Keep keys in env vars, never in source
Set
ROLLIN_API_KEYin your platform’s secret store (Netlify env, Vercel env, Doppler, 1Password). Never commit the key. Rotate from the portal if it leaks. - 02
Honor 429 with Retry-After
Rate limit hits return
429with aRetry-Afterheader in seconds. Wait that long before retrying. Use exponential backoff with jitter for 5xx errors. - 03
Cache aggressively client-side
Venue data changes daily to monthly, not by the second. Cache
/v1/locations/:idresponses for 24 hours. The/v1/usageendpoint shows your remaining quota, so display it in your dashboard. - 04
Surface scores honestly to users
A score of 60 is not the same as a score of 90. Show the number rather than a binary yes or no, and link to ROLLIN for the full breakdown. Your users will trust your app more when the data keeps its nuance.
- 05
Forward feedback to /v1/feedback
If your users tell you a venue’s data is wrong, send it back to ROLLIN via
POST /v1/feedback(Developer+). It makes the score more accurate for everyone, including you next time. - 06
Plan for tier limits before launch day
Estimate monthly call volume from your projected daily actives. If it lands above 5K a month, upgrade to Starter before launch day. Annual billing on Developer and above saves 20 percent.
Start with the free tier.
1,000 requests a month, no credit card. If you are shipping at scale, talk to us about annual pricing and onboarding.