API
A read-only JSON API for accessing community data. No authentication required. CORS enabled.
While this site is under construction, I wouldn't build against this API if I were you - this is all subject to change heavily!
Base URL
Endpoints
| Endpoint | Description |
|---|---|
/api/companies | List companies |
/api/companies/:slug | Get company |
/api/events | List events |
/api/events/:slug | Get event |
/api/groups | List groups |
/api/groups/:slug | Get group |
/api/jobs | List jobs |
/api/jobs/:slug | Get job |
/api/education | List education |
/api/education/:slug | Get education |
/api/news | List news |
/api/news/:slug | Get news article |
/api/people | List people |
/api/people/:slug | Get person |
/api/projects | List projects |
/api/projects/:slug | Get project |
/api/products | List products |
/api/products/:slug | Get product |
Pagination
List endpoints support pagination:
limit- Number of items (default: 20, max: 100)offset- Items to skip (default: 0)
Responses include a pagination object:
{
"data": [...],
"pagination": {
"total": 42,
"limit": 20,
"offset": 0,
"hasMore": true
}
}Responses also include RFC 5988 Link headers for navigation:
Link: <https://siliconharbour.dev/api/companies?limit=20&offset=20>; rel="next",
<https://siliconharbour.dev/api/companies?limit=20&offset=0>; rel="first"OpenAPI Specification
Feeds
RSS feeds and an iCal calendar are also available. See Stay Connected for details.
/feed.rss- Combined RSS feed/events.rss- Events RSS feed/news.rss- News RSS feed/jobs.rss- Jobs RSS feed/calendar.ics- iCal calendar subscription