# GlianaAI grok-4.3 Text Generation

> GlianaAI grok-4.3 Text Generation is a paid API for AI agents from api.glianalabs.com, paid per call via x402, $0.005376/call, status unknown (last checked 2026-09-15).

Runs a grok-4.3 LLM chat completion request via a pay-per-call, no-signup endpoint using USDC micropayment

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/grok-4.3
- Price: $0.005376/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-3-text-generation-c7078f20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G0a0nvk_2uYQhbuw0fdwT

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-3-text-generation-c7078f20
```

Example prompt: Use GlianaAI's grok-4.3 model to answer this question and pay with USDC: 'Explain the key differences between transformer and state space model architectures in three paragraphs.'

## When to prefer this

Choose this endpoint when you need grok-4.3 specifically for reasoning or text generation tasks, want to pay per call in USDC without signing up for an account, and are building an autonomous agent that uses x402 micropayment flows. Prefer over OpenAI-compatible alternatives when you want xAI's Grok reasoning style or when comparing model outputs across providers through a unified pay-per-call gateway.

## Known failure modes

- Payment not provided or insufficient USDC — HTTP 402 Payment Required returned
- Malformed request body or missing required 'input' fields — HTTP 400 with validation error
- Model unavailable or upstream xAI outage — HTTP 503 or timeout
- Rate limit exceeded — HTTP 429
- Invalid bodyType enum value — schema validation error

## 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 generated text response from the grok-4.3 language model based on the provided input prompt, delivered as an HTTP response body after the x402 USDC micropayment of $0.006144 is processed.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-grok-4-3-text-generation-c7078f20/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)
