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
TypeScript
const res = await fetch('https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health');
console.log(res.status);
Python
import requests
resp = requests.get('https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health')
print(resp.status_code)
cURL
curl -I https://api-movement-mainnet.n.dwellir.com/YOUR_API_KEY/v1/-/health
EVM Equivalent
N/A.