# GlianaAI MiniMax-M3 Text Generation

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

Generates text via the MiniMax-M3 large language model through a pay-per-call, no-signup USDC-billed API endpoint

## Facts

- Endpoint: GET https://api.glianalabs.com/x402/minimax-m3
- Price: $0.001936/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glianaai-minimax-m3-text-generation-7ec77cea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_d37OmiWRhWS6N1h--LhB-

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-minimax-m3-text-generation-7ec77cea
```

Example prompt: Use GlianaAI's MiniMax-M3 model to write me a short professional bio based on this info: I'm a software engineer with 8 years of experience in fintech, I love open source, and I'm currently looking for a new role.

## When to prefer this

Choose this endpoint when you need MiniMax-M3 specifically for text generation and want pay-per-call access with USDC and no account signup. Prefer this over subscription-based LLM APIs when running sporadic or agent-driven inference workloads where predictable per-call billing matters. Ideal for AI agents that need crypto-native, anonymous access to a capable LLM without API key management.

## Known failure modes

- Payment not included or insufficient USDC — returns HTTP 402 Payment Required
- Malformed input body or missing required fields — returns 400 Bad Request
- Model temporarily unavailable — returns 503 Service Unavailable
- Rate limit exceeded — returns 429 Too Many Requests
- Network timeout if inference takes too long — connection reset

## How this service works

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

## Output

Returns generated text from the MiniMax-M3 model — a chat completion or text response based on the provided prompt input, billed at $0.002212 USDC per call with no signup required.

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

## More

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