Health — Service Health
Overview#
Simple endpoint to check service availability.
Endpoint#
GET /v1/-/health
Response#
Success Response (200)#
Healthy service returns HTTP 200 with empty body.
Code Examples#
- cURL
- Python
- TypeScript
curl -I https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health
import requests
resp = requests.get('https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health')
print(resp.status_code)
const res = await fetch('https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health');
console.log(res.status);