# Clink Lithium Vault — Full Structured Row

> Clink Lithium Vault — Full Structured Row is a paid API for AI agents from clink-lithium-vault.fly.dev, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns complete structured data rows for a single lithium operator (company-level) or producing mine (asset-level), including financials, production, AISC, ownership, royalties, offtakes, and filing references, all FX-normalized to USD.

## Facts

- Endpoint: GET https://clink-lithium-vault.fly.dev/vault
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clink-lithium-vault-fly-dev-eacdfbff
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sx3qa7-me5b1AL5TXapqo

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 clink-lithium-vault-fly-dev-eacdfbff
```

Example prompt: Pull the full structured vault data for Albemarle at the company level — I need their production, AISC, EBITDA, debt, reserves, ownership, royalties, and offtakes all in one place from primary filings.

## When to prefer this

Use this /vault endpoint (mid-tier at $0.05) when you need the complete structured row — full financials, production history, ownership, royalties, and offtakes — not just headline metrics. Use /vault/summary ($0.02) for quick snapshots and /vault/story ($0.20) for AI-synthesized narratives with citations. Best for quantitative analysis, model-building, or due diligence where raw structured data is needed.

## Known failure modes

- Unknown ticker or mine name returns empty or 404 — agent should verify entity name against supported list of 40 operators / 49 mines
- Level enum mismatch (e.g. passing a mine name with level=company) returns no results
- Rate limit or payment failure (x402) if USDC payment is not attached or insufficient
- Stale data if primary filings have not been updated recently

## How this service works

Lithium Research Vault - full structured JSON for any lithium / battery-metals producer or DFS-stage developer, by company or mine: production, AISC, reserves, ownership, royalties, offtakes, financials, DFS economics (NPV/IRR/capex), market cap & lithium spot. From SEC/ASX/TSX/cninfo filings, USD-normalized, every figure cited. 66 mines, 44 operators. Greenbushes, Pilgangoora, Wodgina, Cinovec; tickers SGML, ALB, PILBF, EMH, GL1, PMETF. /vault/summary $0.02; /vault/comparables $0.20.

## Output

A structured JSON object containing company metadata, asset list, financials (cash, debt, EBITDA, FCF), production volume, volume-weighted AISC, realized price, reserves, institutional ownership, royalties, offtake agreements, and source filing URLs — all FX-normalized to USD. At mine level, returns multi-operator rows aggregated across all operators of that mine.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "level": "company",
   "entity": "ALB"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "entity",
      "level"
     ],
     "properties": {
      "level": {
       "enum": [
        "company",
        "mine"
       ],
       "type": "string"
      },
      "entity": {
       "type": "string",
       "description": "Ticker (level=company) or mine name (level=mine)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "company": {
   "ticker": "SGML"
  },
  "ownership": [],
  "financials": [],
  "production": [],
  "recent_filings": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clink-lithium-vault-fly-dev-eacdfbff/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clink-lithium-vault.fly.dev](https://www.zero.xyz/host/clink-lithium-vault.fly.dev/llms.txt)
