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
- Health Checks - Monitor API availability
- Integration Testing - Verify API connectivity
- Uptime Monitoring - Automated status checks
Notes
- This endpoint has no rate limiting
- No authentication required
- Always returns
200 OKif the API is operational - Can be used from any origin (CORS enabled)