Auto Body Shop Directory
Search 43k+ US auto body and repair shops by city
AutoBodyShopNear.com publishes a directory of tens of thousands of US collision, repair, and recycler shops. Public GET endpoints page through listings by city, state, or ZIP and return each shop's address and phone. Reuse asks that you credit the source and link back to the shop profile.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Open provider docs ↗
On our probe schedule. Uptime charts appear after the first check lands.
GET https://autobodyshopnear.com/api/v1/public/shops/by-city?city=Houston&state=TX&limit=20&offset=0
{
"success": true,
"data": {
"items": [
{
"id": 432313,
"name": "CHAMPION AUTO PARTS",
"category": "Dismantler / Recycler",
"city": "Houston",
"stateCode": "TX",
"postalCode": "77056",
"slug": "champion-auto-parts-houston-tx-77056"
}
]
}
}curl "https://autobodyshopnear.com/api/v1/public/shops/by-city?city=Houston&state=TX&limit=20&offset=0"const res = await fetch("https://autobodyshopnear.com/api/v1/public/shops/by-city?city=Houston&state=TX&limit=20&offset=0");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://autobodyshopnear.com/api/v1/public/shops/by-city?city=Houston&state=TX&limit=20&offset=0")
print(res.json())BROWSER CALLS BLOCKED (NO CORS/HTTPS) — USE THE CURL SNIPPET
/shops/by-city?city=Houston&state=TX&limit=20&offset=0PROBEDSearch 43k+ US auto body and repair shops by city
/shopsShops — documented GET route.
/shops/1Shops details by ID (example: 1).
/shops?limit=10Shops — documented GET route.
/shops/search?q=testSearch by query parameters.
/shops/by-city?limit=5By City — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Not tracked yet. Shape-change history starts once this API joins our probe schedule.
Auto Body Shop Directory: common questions
Is Auto Body Shop Directory free to use?
Yes — Auto Body Shop Directory is a free transport API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does Auto Body Shop Directory need an API key?
No — Auto Body Shop Directory needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call Auto Body Shop Directory from the browser?
Not directly — Auto Body Shop Directory doesn't send browser-friendly CORS headers, so call it from a server or proxy instead. Copy the curl or Python snippet on this page to get started.
Is Auto Body Shop Directory up right now?
Auto Body Shop Directory is catalogued but not yet on our probe schedule, so we don't publish a live status for it. Check the provider's own status page or docs for its current state.