Endpoint Playground
Test Crawlora's Strava club API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/strava/clubs/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id (path) | string | Yes | Strava club ID |
{
"code": 200,
"msg": "OK",
"data": {
"id": "521703",
"name": "Women of OZ NWA",
"verified": false,
"private": true,
"location": "Bentonville, Arkansas",
"country_code": "us",
"description": "Founded in 2019 Women of OZ NWA is an inclusive, non-profit organization...",
"member_count": 937,
"cover_image_url": "https://dgalywyr863hv.cloudfront.net/pictures/clubs/521703/11986498/3/large.jpg",
"avatar_image_url": "https://dgalywyr863hv.cloudfront.net/pictures/clubs/521703/11986503/2/large.jpg",
"url": "https://www.strava.com/clubs/521703",
"source_url": "https://www.strava.com/clubs/521703"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a Strava club's public profile: name, verified/private flags, location, description, member count, and cover/avatar images. Only the base public profile is returned -- discussion, leaderboard, member list, and recent-activity data require a logged-in Strava session and are not available. Public data, sourced from Strava's own server-rendered club page.
{
"code": 200,
"msg": "OK",
"data": {
"id": "521703",
"name": "Women of OZ NWA",
"verified": false,
"private": true,
"location": "Bentonville, Arkansas",
"country_code": "us",
"description": "Founded in 2019 Women of OZ NWA is an inclusive, non-profit organization...",
"member_count": 937,
"cover_image_url": "https://dgalywyr863hv.cloudfront.net/pictures/clubs/521703/11986498/3/large.jpg",
"avatar_image_url": "https://dgalywyr863hv.cloudfront.net/pictures/clubs/521703/11986503/2/large.jpg",
"url": "https://www.strava.com/clubs/521703",
"source_url": "https://www.strava.com/clubs/521703"
}
}curl "https://api.crawlora.net/api/v1/strava/clubs/<id>" \
-H "x-api-key: $CRAWLORA_API_KEY"