Verification API v1
Query the verified provider dataset live.
The Verification API returns the same records as the open dataset with pagination, filtering, and live updates. The public tier is free and auth-free with a soft rate limit. A paid tier with API keys and higher ceilings is planned.
Base URL
https://licensedpsychedelics.com/api/v1List verified providers. Paginated. Supports state, modality, and claimed filters.
Query parameters
| Param | Type | Default | Description |
|---|---|---|---|
| page | integer | 1 | 1-indexed page. |
| per_page | integer | 50 | Items per page. Max 200. |
| state | string | - | Two-letter US state code. Case-insensitive. Example: CA, OR, CO. |
| modality | enum | - | spravato, ketamine_iv, ketamine_im, ketamine_oral, psilocybin_or, psilocybin_co, ibogaine. |
| claimed | boolean | - | Return only claimed or only unclaimed listings. |
Example
curl "https://licensedpsychedelics.com/api/v1/providers?state=OR&modality=psilocybin_or&per_page=5"Response
{
"meta": {
"license": "CC-BY-4.0",
"license_url": "https://creativecommons.org/licenses/by/4.0/",
"attribution": "LicensedPsychedelics verified provider dataset, licensedpsychedelics.com, CC BY 4.0",
"methodology": "https://licensedpsychedelics.com/how-we-verify",
"total": 47,
"page": 1,
"per_page": 5,
"total_pages": 10,
"filters": { "state": "OR", "modality": "psilocybin_or", "claimed": null },
"generated_at": "2026-04-21T12:00:00.000Z",
"rate_limit": { "limit": 60, "window_seconds": 60, "remaining": 59 }
},
"providers": [
{
"slug": "inner-oracle-psilocybin-services",
"name": "Inner Oracle Psilocybin Services",
"address": { "city": "Portland", "state": "OR", "zip": "97205" },
"website": "https://example.com",
"phone": "+1 (503) 555-0142",
"modalities": [
{ "key": "psilocybin_or", "label": "Psilocybin (Oregon licensed)" }
],
"licenses": [
{
"body": "OHA_PSILOCYBIN",
"body_label": "Oregon Health Authority licensed",
"number": "OHA-2024-PSC-0041",
"verified_at": "2026-04-14"
}
],
"insurance": ["cash_only"],
"pricing": { "min_usd": 1800, "max_usd": 2800 },
"google": { "rating": 4.9, "reviews": 38 },
"claimed": true,
"year_established": 2023,
"last_verified_at": "2026-04-14",
"profile_url": "https://licensedpsychedelics.com/providers/inner-oracle-psilocybin-services"
}
]
}Rate limit
Public tier is 60 requests per 60 seconds, per IP. Every response carries x-ratelimit-limit, x-ratelimit-remaining, and x-ratelimit-reset (unix seconds). Over the ceiling returns 429 with a retry-after header.
Need higher limits, webhook updates, or a service-level agreement? .
Attribution is the only requirement
Responses and downloads are licensed CC BY 4.0. In any product, article, or repository that uses this data: credit LicensedPsychedelics and link back to licensedpsychedelics.com/data.
Versioning + stability
- Additive only within v1. New fields may appear. Existing fields never change type or disappear.
- Breaking changes get a new path.
/api/v2, not a silent edit to/api/v1. - Deprecation notice. 90 days of double-running before any v1 endpoint is retired.
Paid tier (in planning)
API key auth, 10 kreq/min ceiling, change-diff webhooks, license-change history, and embeddable verification widgets for partner sites. Get in line and we will reach out as it opens.