curl -X GET "https://api.fibrous.finance/starknet/healthCheck"
import requests
url = "https://api.fibrous.finance/starknet/healthCheck"
response = requests.get(url)
print(response.json())
const axios = require('axios');
axios.get('https://api.fibrous.finance/starknet/healthCheck')
.then(response => console.log(response.data))
.catch(error => console.error(error));
{
"staus": 200,
"message": "{Starknet} Fibrous Finance Router is alive and well - routing your tokens faster than you can say \"impermanent loss\""
}
Endpoints and Parameters
Health Check
Check the health status of the Fibrous Starknet API
GET
/
starknet
/
healthCheck
curl -X GET "https://api.fibrous.finance/starknet/healthCheck"
import requests
url = "https://api.fibrous.finance/starknet/healthCheck"
response = requests.get(url)
print(response.json())
const axios = require('axios');
axios.get('https://api.fibrous.finance/starknet/healthCheck')
.then(response => console.log(response.data))
.catch(error => console.error(error));
{
"staus": 200,
"message": "{Starknet} Fibrous Finance Router is alive and well - routing your tokens faster than you can say \"impermanent loss\""
}
Endpoint
https://api.fibrous.finance/starknet/healthCheck
Response
number
The HTTP status code. Will be 200 if the service is healthy.
string
A descriptive message about the API status.
Error Responses
If the service is unhealthy or experiencing issues, the endpoint will return a non-200 status code.curl -X GET "https://api.fibrous.finance/starknet/healthCheck"
import requests
url = "https://api.fibrous.finance/starknet/healthCheck"
response = requests.get(url)
print(response.json())
const axios = require('axios');
axios.get('https://api.fibrous.finance/starknet/healthCheck')
.then(response => console.log(response.data))
.catch(error => console.error(error));
{
"staus": 200,
"message": "{Starknet} Fibrous Finance Router is alive and well - routing your tokens faster than you can say \"impermanent loss\""
}
Usage
Use this endpoint to:- Monitor API availability
- Check API version
- Implement health checks in your application
- Verify connectivity before making other API calls