Skip to main content
GET
/
{network}
/
v2
/
healthcheck
{
  "status": 123,
  "message": "<string>",
  "meta": {
    "apiVersion": "<string>",
    "timestamp": "<string>"
  }
}

Overview

The Health Check V2 endpoint verifies if the API is up and running. This endpoint can be used for monitoring and ensuring the API service is healthy. Currently available on Evm networks.
V2 API is currently available on Evm networks. V1 endpoints remain available for backward compatibility.

Endpoint

https://api.fibrous.finance/{network}/v2/healthcheck
Verify if the Fibrous V2 API is up and running. This endpoint can be used for monitoring and ensuring the API service is healthy.

Response

status
number
The HTTP status code. Will be 200 if the service is healthy.
message
string
A descriptive message about the API status.
meta
object
required
API metadata including version and timestamp.

Example Request

curl -X GET "https://api.fibrous.finance/{network}/v2/healthcheck"

Example Response

{
  "status": 200,
  "message": "{Monad} Fibrous Finance Router is alive and well - routing your tokens faster than you can say \"impermanent loss\"",
  "meta": {
    "apiVersion": "2.0",
    "timestamp": "2024-01-15T10:30:00.000Z"
  }
}

Usage

Use this endpoint to:
  1. Monitor API availability
  2. Check API version
  3. Implement health checks in your application
  4. Verify connectivity before making other API calls
  5. Track API response times via meta.timestamp

Differences from V1

FeatureV1V2
Meta field✅ Always present
API version tracking✅ In meta field
Timestamp✅ In meta field

Rate Limits

The health check endpoint has a higher rate limit than other endpoints. Please refer to our rate limiting documentation for specific details.