Organizations API
Access yacht club and organization information
Organizations API
The Organizations API provides access to yacht clubs, sailing clubs, and race organizing authorities.
Endpoints
GET
/api/v1/organizationsSearch organizations
GET
/api/v1/organizations/:slugGet organization details
List Organizations
Search for sailing organizations.
GET /api/v1/organizationsQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | No | Search by name or location |
location | string | No | Filter by city, state, or country |
type | string | No | Filter by type: yacht-club, sailing-club, race-committee, association |
Example Request
curl "https://rhumby.com/api/v1/organizations?location=Florida" \
-H "Authorization: Bearer rhb_..."Example Response
{
"organizations": [
{
"id": "org_abc123",
"slug": "sss",
"name": "Sarasota Sailing Squadron",
"type": "yacht-club",
"city": "Sarasota",
"state": "FL",
"country": "USA",
"website": "https://sarasotasailing.org",
"upcomingEvents": 5,
"totalEvents": 42
},
{
"id": "org_def456",
"slug": "spyc",
"name": "St. Petersburg Yacht Club",
"type": "yacht-club",
"city": "St. Petersburg",
"state": "FL",
"country": "USA",
"website": "https://spyc.org",
"upcomingEvents": 3,
"totalEvents": 28
}
]
}Get Organization Details
Retrieve detailed information about a specific organization.
GET /api/v1/organizations/:slugExample Request
curl "https://rhumby.com/api/v1/organizations/sss" \
-H "Authorization: Bearer rhb_..."Example Response
{
"id": "org_abc123",
"slug": "sss",
"name": "Sarasota Sailing Squadron",
"description": "A premier sailing club on Florida's Gulf Coast, hosting weekly races and major regattas since 1950.",
"type": "yacht-club",
"founded": 1950,
"address": {
"street": "1600 Ken Thompson Parkway",
"city": "Sarasota",
"state": "FL",
"postalCode": "34236",
"country": "USA"
},
"contact": {
"email": "office@sarasotasailing.org",
"phone": "+1-941-388-2355",
"website": "https://sarasotasailing.org"
},
"upcomingEvents": [
{
"id": "evt_001",
"slug": "friday-night-spring-2026",
"name": "Friday Night Series - Spring 2026",
"startDate": "2026-04-03",
"registrationOpen": true
}
],
"pastEvents": {
"year2026": 8,
"year2025": 42,
"total": 156
},
"socialMedia": {
"facebook": "https://facebook.com/sarasotasailing",
"instagram": "@sarasotasailing"
}
}Organizations can create and manage their own events through the Rhumby dashboard. Use the API to pull event listings for your club's website.