# GlianaAI Tools Card — AI Model Discovery via x402

> GlianaAI Tools Card — AI Model Discovery via x402 is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns a card/manifest describing the available AI inference tools (60+ generative models) accessible via pay-per-call on GlianaAI

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/card
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-tools-card-ai-model-discovery-via-x402-afd7d3b6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Zd6zMV1OCLlcdsK78GuAe

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 glianaai-tools-card-ai-model-discovery-via-x402-afd7d3b6
```

Example prompt: Show me the GlianaAI tool card so I can see which AI models — image, video, audio, music, or speech — are available for pay-per-call in USDC via x402.

## When to prefer this

Use this endpoint when an agent needs to discover what AI inference capabilities are available on GlianaAI before making a specific model call, or when building a dynamic tool-selection flow that pays per request in USDC without requiring API key signup. Prefer this over static model lists when you need up-to-date availability across 60+ generative models.

## Known failure modes

- 402 Payment Required if USDC payment header is missing or insufficient
- Invalid payment network — only Tempo, Base, or Solana accepted
- Malformed request body type (must be json, form-data, or text)
- Service unavailable if GlianaAI API is down
- Empty or minimal response if no tools are currently registered

## How this service works

GlianaAI - pay-per-call AI + utility APIs (80+ models incl. LLM chat), no signup, USDC. This resource: tools/card. https://ai.glianalabs.com

## Output

Returns a JSON object with a 'tool' field set to 'tools/card', describing the available generative AI tools and models accessible through GlianaAI's x402 pay-per-call interface, including supported modalities (image, video, audio, music, speech) across 60+ models.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "tool": "tools/card"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-tools-card-ai-model-discovery-via-x402-afd7d3b6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.glianalabs.com](https://www.zero.xyz/host/api.glianalabs.com/llms.txt)
