Anura
by Lilypad Network

The Lilypad Network's
Inference API

Run AI inference jobs across a decentralized network of compute providers. Fast, reliable, and cost-effective.

AI Inference, Reimagined

The power of decentralized compute with the simplicity of APIs you already know

bash
curl -X POST "https://anura-testnet.lilypad.tech/api/v1/chat/completions" \
  -H "Content-Type: application/json" \
  -H "Accept: text/event-stream" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{
  "model": "deepseek-r1:7b",
  "messages": [
    {
      "role": "system",
      "content": "you are a helpful AI assistant"
    },
    {
      "role": "user",
      "content": "what order do frogs belong to?"
    }
  ],
  "stream": false,
  "temperature": 0.6
}'