# DefiLlama TVL Lookup for Synthetix

> DefiLlama TVL Lookup for Synthetix is a paid API for AI agents from api.web3identity.com, paid per call via x402, $0.010000/call, status unknown (last checked 2026-09-15).

Fetches the current Total Value Locked (TVL) for the Synthetix DeFi protocol via DefiLlama data

## Facts

- Endpoint: GET https://api.web3identity.com/api/defi/tvl/synthetix
- Price: $0.010000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-web3identity-com-f5392a57
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G_EqD3uycABOzXpN2TYaL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability api-web3identity-com-f5392a57
```

Example prompt: What's the current total value locked in Synthetix across all chains — pull the latest TVL from DefiLlama?

## When to prefer this

Use this endpoint when you specifically need Synthetix TVL data sourced from DefiLlama, particularly in agentic workflows requiring per-call micropayment billing via x402. Prefer over scraping DefiLlama directly when you need a clean, paid API abstraction with structured output including chain-level breakdown.

## Known failure modes

- DefiLlama upstream unavailable — returns error or stale data
- Payment failure — 402 response if x402 payment not properly processed
- Protocol data not found — if Synthetix data is temporarily absent from DefiLlama
- Network timeout — slow response from upstream aggregator

## How this service works

Get Total Value Locked for a DeFi protocol from DefiLlama

## Output

Returns a JSON object containing the Synthetix protocol's current TVL in USD as a number, a list of chains where the protocol has locked value, and the protocol name string.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "tvl": {
       "type": "number"
      },
      "chains": {
       "type": "array"
      },
      "protocol": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-web3identity-com-f5392a57/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.web3identity.com](https://www.zero.xyz/host/api.web3identity.com/llms.txt)
