# GlianaAI DeepSeek V4 Pro Text Generation

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

Runs a pay-per-call DeepSeek V4 Pro large language model inference call via an OpenAI-compatible API, billed per request in USDC with no signup required.

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/deepseek-v4-pro
- Price: $0.007484/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-deepseek-v4-pro-text-generation-a1de5ef4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fI47prKGOLrjARX7fEJza

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-deepseek-v4-pro-text-generation-a1de5ef4
```

Example prompt: Use DeepSeek V4 Pro through GlianaAI to answer this question — no signup needed, just pay in USDC per call: 'Explain the key differences between transformer and state space model architectures in plain English.'

## When to prefer this

Choose this endpoint when you need access to the DeepSeek V4 Pro model specifically without managing subscriptions or API keys, and you can pay per call in USDC via the x402 protocol. Ideal for AI agents that need on-demand, cost-controlled LLM inference without committing to a subscription.

## Known failure modes

- Payment not included or insufficient USDC — returns 402 Payment Required
- Malformed request body — returns 400 Bad Request
- Model temporarily unavailable — returns 503
- Rate limit exceeded — returns 429
- Invalid or unsupported method used

## How this service works

GlianaAI - pay-per-call AI: LLM chat (OpenAI-compatible), image, video, music, speech - 80+ models, no signup, USDC. This resource: deepseek-v4-pro (Text Generation). https://ai.glianalabs.com

## Output

Returns a text completion or chat response generated by the DeepSeek V4 Pro model, formatted in an OpenAI-compatible structure, containing the model's answer to the provided prompt or conversation.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glianaai-deepseek-v4-pro-text-generation-a1de5ef4/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)
