v1
latestOpenAPI 3.0.3MIT2026-07-242310.2 KBHelplines
Get helplines for a specific country
Returns an array of crisis helplines for the specified country. The country parameter accepts both full country names and aliases (e.g., "USA", "America" for "United States").
Response Patterns
- Returns empty array [] if country has no helplines or is unknown
- Returns 400 error if country parameter is missing
- Returns 403 error if request origin is not allowed (CORS)
get/crisis_helplines
Query parameters
countrystring required
Country name or alias to retrieve helplines for.
Examples:
- United States
- USA (alias for United States)
- America (alias for United States)
- Canada
- CAN (alias for Canada)
Country names are case-sensitive and should match exactly as stored in the database.
Response
Successfully retrieved helplines for the specified country
Example response
[
{
"country": "United States",
"countryI18nKey": "en-US",
"countryCode": "US",
"name": "Crisis Text Line",
"description": "24/7 crisis support via text message",
"url": "https://crisistextline.org",
"displayURL": "crisistextline.org",
"phone": "741741",
"displayNumber": "741741",
"formattedCallNumber": "741741",
"formattedTextingNumber": "741741",
"availability": "24/7",
"modality": "text",
"identity": "general",
"topic": "crisis",
"topicMenu": true,
"hours": "24/7"
}
]