Overview
The Health Check endpoint allows you to verify that the Fifteenth API is operational and accessible from your application. This is useful for service monitoring, debugging connectivity issues, and validating your API configuration.
This endpoint does not require authentication and can be called without an API key.
Request
No parameters required.
Optional. Can be application/json
Response
Success Response
API service status. Always ok when the service is healthy.
ISO 8601 timestamp of the health check response.
Examples
import requests
url = "https://api.fifteenth.com/v1beta/health"
response = requests.get(url)
print(f"Status: {response.status_code}")
print(f"Response: {response.json()}")
Response Example
Successful Health Check
{
"status": "ok",
"timestamp": "2024-01-15T10:30:00Z"
}
Usage Notes
- Use this endpoint to verify API connectivity before making authenticated requests
- No rate limiting applied to this endpoint
- Returns 200 status code when service is healthy