# GlianaAI Quote Card Tool

> GlianaAI Quote Card Tool 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 quote card summary for a specific GlianaAI tool endpoint, describing its capabilities and pricing for pay-per-call AI inference.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/quote-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-quote-card-tool-14a71423
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_oRxoHG_IXRIhMxwSIaI0Q

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-quote-card-tool-14a71423
```

Example prompt: Can you pull up the GlianaAI quote card for the tools/quote-card endpoint so I can see what it does and what it costs before I use it?

## When to prefer this

Use this endpoint when an agent needs to inspect or preview a GlianaAI tool's metadata — such as its description, pricing, and input/output schema — before committing to a paid inference call. Useful for tool discovery flows where the agent wants to confirm the right tool is selected prior to executing a USDC payment on Tempo, Base, or Solana.

## Known failure modes

- Missing or invalid 'input' object returns a validation error
- Unsupported HTTP method other than GET returns a 405 error
- Payment not settled via x402/MPP results in a 402 Payment Required response
- Service unavailable or downstream outage returns a 503 error

## How this service works

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

## Output

A JSON quote card object describing the GlianaAI tool, including its name, capabilities, pricing, and usage metadata — specifically the entry for 'tools/quote-card'.

## 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/quote-card"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-quote-card-tool-14a71423/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)
