REFUGE Restrooms
Crowd-sourced safe, accessible, gender-neutral restrooms
A community-maintained directory of restrooms that are safe for transgender, intersex, and gender-nonconforming people. Query by page or location to get names, addresses, coordinates, and accessibility flags as JSON. Open source and keyless.
GET https://www.refugerestrooms.org/api/v1/restrooms.json?page=1&per_page=1
[
{
"id": 135563,
"name": "Freddy Gryphon",
"street": "204 sw yamhill dr",
"city": "Portland",
"state": "Or",
"accessible": true,
"unisex": true,
"latitude": 45.5171983,
"longitude": -122.6751862
}
]curl "https://www.refugerestrooms.org/api/v1/restrooms.json?page=1&per_page=1"const res = await fetch("https://www.refugerestrooms.org/api/v1/restrooms.json?page=1&per_page=1");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://www.refugerestrooms.org/api/v1/restrooms.json?page=1&per_page=1")
print(res.json())/restrooms.json?page=1&per_page=1PROBEDCrowd-sourced safe, accessible, gender-neutral restrooms
/restrooms.json?limit=5Restrooms Json — documented GET route.
/restrooms.json?page=1Restrooms Json — documented GET route.
/api/docs/Docs — 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.
REFUGE Restrooms: common questions
Is REFUGE Restrooms free to use?
Yes — REFUGE Restrooms is a free transport API. Free tier: Free — no key required. Whether the free tier allows commercial use is unclear — check the provider docs.
Does REFUGE Restrooms need an API key?
No — REFUGE Restrooms needs no API key or signup. You can call it straight away; rate limits still apply (Unpublished).
Can I call REFUGE Restrooms from the browser?
Yes — REFUGE Restrooms 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 REFUGE Restrooms up right now?
As of our last scheduled check, REFUGE Restrooms is healthy with 96.1% uptime over 90 days and a 1787 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.