The Coworkies API is a RESTful service that allows you to integrate platform data into your own tools and workflows.
Whether you need to automatically post remote jobs, sync a branded job board for your space, or retrieve the directory of coworking spaces, the API provides the endpoints you need.
Quick Overview
- Base URL:
https://api.coworkies.com/v2 - Authentication: All requests require an API key sent via header:
X-API-Key: your_api_keyorAuthorization: Bearer your_api_key - Response Format: JSON responses follow a standard
{ "success": boolean, "status": number, "data": {...} }structure.
Key Capabilities
- Manage Jobs (
GET /v2/jobs,POST /v2/jobs): Search, filter (by type, remote flag, city), and programmatically post jobs with smart deduplication and tag normalization. - Query Spaces & Cities: Look up coworking spaces and resolve cities.
- Events & Blog: Retrieve upcoming coworking events and articles.
API Resources & Documentation
Please visit our full documentation for complete endpoint details, request/response schemas, and error codes.
| Resource | Link |
|---|---|
| Interactive Documentation | api.coworkies.com/docs/ |
| OpenAPI Specification | api.coworkies.com/openapi.yaml |
| LLM Reference (concise) | api.coworkies.com/llms.txt |
| LLM Reference (full) | api.coworkies.com/llms-full.txt |
Quick Start Example
Fetch active jobs:
curl https://api.coworkies.com/v2/jobs \
-H "X-API-Key: YOUR_API_KEY"