API Reference
The exit1.dev API provides programmatic access to your monitoring data.
Note: API access is available on all plans.
Base URL
All API requests are made to:
https://us-central1-exit1-dev.cloudfunctions.net/publicApiConventions
- REST architecture - Resources are accessed via standard HTTP methods
- JSON responses - All responses are returned in JSON format
- GET-only - The current API version only supports read operations
- API versioning - All endpoints are prefixed with
/v1/
Available Endpoints
| Endpoint | Description |
|---|---|
GET /v1/public/checks | List all checks |
GET /v1/public/checks/{id} | Get a single check |
GET /v1/public/checks/{id}/history | Get check history |
GET /v1/public/checks/{id}/stats | Get uptime statistics |
Quick Start
- Create an API key
- Include the key in the
X-Api-Keyheader - Make your first request:
curl -H "X-Api-Key: ek_live_your_api_key_here" \
https://us-central1-exit1-dev.cloudfunctions.net/publicApi/v1/public/checksRelated
- Authentication - API key setup
- Rate Limits - Request quotas
- Errors - Error response format
Last updated on