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.
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())/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.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
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?
Yes — Auto Body Shop Directory returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is Auto Body Shop Directory up right now?
As of our last scheduled check, Auto Body Shop Directory is healthy with 98.0% uptime over 90 days and a 559 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.