Proprietary accessibility data for 105,000+ venues across 15 states. REST API. MCP server for AI agents. Python SDK by Stainless. The vertical AI data layer powering accessible apps and assistants.
# Search accessible places near Times Square curl -H "X-Api-Key: rlf_your_key_here" \ "https://joinrollin.com/api/v1/locations?lat=40.7580&lng=-73.9855&radius=500" { "locations": [{ "name": "Junior's Restaurant", "score": 82, "wheelchair_entry": true, "accessible_restroom": true }], "total": 47
One call. Real data. Structured JSON.
// Search accessible restaurants near NYC const response = await fetch( 'https://joinrollin.com/api/v1/locations' + '?lat=40.7128&lng=-74.006' + '&radius=500&min_score=60', { headers: { 'X-Api-Key': apiKey } } ); const data = await response.json(); console.log(data.locations.length); // -> 23 accessible places found
import requests # Search accessible restaurants near NYC response = requests.get( 'https://joinrollin.com/api/v1/locations', params={ 'lat': 40.7128, 'lng': -74.006, 'radius': 500, 'min_score': 60 }, headers={ 'X-Api-Key': api_key } ) data = response.json() print(f'Found {len(data["locations"])} places')
# Search accessible restaurants near NYC curl -s \ -H "X-Api-Key: rlf_your_key_here" \ "https://joinrollin.com/api/v1/locations\ ?lat=40.7128&lng=-74.006\ &radius=500&min_score=60" \ | jq '.locations | length' # -> 23
{
"locations": [
{
"id": "a3f8c1e2-7b4d-...",
"name": "Balthazar",
"score": 88,
"address": "80 Spring St, NYC",
"features": {
"wheelchair_entry": true,
"accessible_restroom": true,
"level_entry": true,
"accessible_parking": "unknown",
"elevator": false,
"wide_aisles": true
}
}
],
"total": 23,
"center": { "lat": 40.7128, "lng": -74.006 }
}Connect to any MCP-compatible tool with npx rollin-mcp-server — no API key needed. 5 free trial requests.
Typed Python client with async, auto-pagination, and retries. Built with Stainless.
Vertical AI intelligence built from a multi-source pipeline.
0–100 scores from multiple verified sources. Not a binary yes/no.
Wheelchair entry, restroom, level entry, parking, elevator, wide aisles. Plus ambient lighting data.
Trust-weighted feedback from real wheelchair users.
Radius, coordinates, feature filters, score thresholds.
Updated regularly. Community feedback continuously refines scores.
REST + JSON, cursor pagination. First response in 5 minutes.
Search, score, feedback, and health.
No credit card required. Upgrade anytime.
Travel apps, advocacy platforms, AI assistants, restaurant tech.
Add wheelchair accessibility filters to search and booking.
Power resource directories with verified data.
Add verified accessibility scores to existing listings.
Wheelchair accessibility data for 105,000+ venues across 15 US states and 48 regions. Each location includes a 0–100 score, 6 verified features, coordinates, address, and trust-weighted verification status.
Yes. 1,000 requests/month, basic location search, and region coverage. No credit card required.
A scoring engine evaluates six accessibility features from a multi-source data pipeline. Scores are deterministic and trust-weighted.
105,000+ locations across 48 regions in 15 US states including NYC, LA, SF Bay Area, Miami, Boston, Chicago, Denver, Dallas, Houston, and more.
Include your API key in the X-Api-Key header with every request. Get a free key instantly at the Developer Portal.
Yes. Developer and Business tier API keys include commercial usage rights.
Free API key. No credit card. Proprietary accessibility data for apps and AI agents.
Get Your Free API Key