# GlianaAI Grok-4.6 LLM Inference

> GlianaAI Grok-4.6 LLM Inference is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.010752/call, status unknown (last checked 2026-09-15).

Runs a single inference request against the Grok-4.6 language model via GlianaAI's pay-per-call gateway, returning a generated output URL, paid per call in USDC with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/grok-4.6
- Price: $0.010752/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-grok-4-6-llm-inference-f8a9b97a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_g3eCGvwJESkZieOCoGfDb

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-grok-4-6-llm-inference-f8a9b97a
```

Example prompt: Use GlianaAI to run a Grok-4.6 inference — ask it to write a concise executive summary of the following text, and pay per call with USDC: [text here].

## When to prefer this

Choose this endpoint when you need one-off or low-volume Grok-4.6 inference without committing to a subscription, especially in crypto-native or agent workflows where USDC micropayments on Base, Solana, Algorand, Tempo, or BNB Chain are preferred. Ideal when no API key management or signup is desired and pay-per-request billing is acceptable.

## Known failure modes

- Payment not received or insufficient USDC balance — 402 Payment Required returned
- Invalid or missing request body fields — 400 Bad Request
- Model temporarily unavailable or overloaded — 503 Service Unavailable
- Malformed HTTP method (only GET accepted) — 405 Method Not Allowed
- Output URL expires or content not yet ready — stale media link

## How this service works

One endpoint for 90+ generative AI models, live market data, SEC filings and identity APIs — image, video, music, speech, LLM chat, crypto and FX rates, DEX liquidity, gas, US company fundamentals and insider trades, document OCR and face matching. Pay per request in USDC on Tempo, Base, Solana, Algorand or BNB Chain with no signup, or top up a prepaid balance in rupiah.

## Output

Returns a JSON object containing the model name ('grok-4.6') and an output URL pointing to the generated content hosted at api.glianalabs.com/v1/media/<id>, from which the agent can retrieve the full inference result.

## 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": {
  "model": "grok-4.6",
  "output": {
   "url": "https://api.glianalabs.com/v1/media/<id>"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-grok-4-6-llm-inference-f8a9b97a/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)
