# GlianaAI Market Brief

> GlianaAI Market Brief is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-16).

Returns a consolidated snapshot of current market conditions — prices, trends, and sentiment — in a single call instead of aggregating multiple data sources manually.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/tools/market-brief
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-market-brief-3b1f7a84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TZGFDtxo3HtcAnRtLNZmg

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-market-brief-3b1f7a84
```

Example prompt: Give me a quick market brief — what are the markets doing right now? I want a consolidated snapshot of prices and trends without having to pull from multiple sources.

## When to prefer this

Choose this endpoint when you need a fast, consolidated market overview without building your own data aggregation pipeline. It is ideal for agents that need a 'what is the market doing right now' answer in a single call rather than stitching together price feeds, sentiment sources, and trend data separately. Best suited for lightweight market monitoring, newsletter generation, or pre-trade context enrichment. For deep DEX-specific data, consider the sibling tools/dex endpoint.

## Known failure modes

- Market data feed temporarily unavailable — upstream data source outage
- Payment of $0.03 USDC not fulfilled — HTTP 402 response requiring x402 payment
- Rate limiting or quota exceeded — too many requests in a short window
- Empty or stale data if market is closed or feeds are delayed

## How this service works

GlianaAI - pay-per-call AI, market data and identity APIs, no signup, USDC. This resource: tools/market-brief. One call that answers "what is the market doing right now" instead of four. https://ai.glianalabs.com

## Output

A single aggregated market brief covering current asset prices, directional trends, and sentiment indicators — consolidating what would otherwise require multiple separate API calls into one structured or narrative response.

## 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/market-brief"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-market-brief-3b1f7a84/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)
