Skip to main content

API Status

Check if the API is operational.

Endpoint

GET /status/

Description

This endpoint allows you to check if the Cryptofuse API is operational. It's useful for monitoring and health checks.

Authentication

This endpoint does not require authentication.

Response

Success Response

Code: 200 OK

Content:

{
"status": "ok"
}

Example

Request

curl -X GET https://api.cryptofuse.com/status/

Response

{
"status": "ok"
}

Use Cases

  1. Health Checks - Monitor API availability
  2. Integration Testing - Verify API connectivity
  3. Uptime Monitoring - Automated status checks

Notes

  • This endpoint has no rate limiting
  • No authentication required
  • Always returns 200 OK if the API is operational
  • Can be used from any origin (CORS enabled)