Skip to main content
GET
https://api.fifteenth.com
/
v1beta
/
health
Health Check
curl --request GET \
  --url https://api.fifteenth.com/v1beta/health \
  --header 'Authorization: Bearer <token>'
{
  "status": "<string>",
  "timestamp": "<string>"
}

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.

Headers

Content-Type
string
Optional. Can be application/json

Response

Success Response

status
string
API service status. Always ok when the service is healthy.
timestamp
string
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

Response
{
  "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