For the complete documentation index, see llms.txt. This page is also available as Markdown.

liquidatable

Get the list of liquidatable accounts.

Get the list of liquidatable accounts.

POST Request

Field
Type
Description

type

string

Must be "liquidatable"

curl -X POST https://api.hydromancer.xyz/info \
  -H "Authorization: Bearer $HYDROMANCER_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "liquidatable"
  }'
import requests
import os

response = requests.post(
    'https://api.hydromancer.xyz/info',
    json={
        'type': 'liquidatable'
    },
    headers={
        'Authorization': f'Bearer {os.environ.get("HYDROMANCER_API_KEY")}',
        'Content-Type': 'application/json'
    }
)

print(response.json())

Last updated