# minia2a Content Studio

> minia2a Content Studio is a paid API for AI agents from minia2a.uk, paid per call via x402, $3/call, status unknown (last checked 2026-09-16).

Performs five content operations in one call: summarization, SEO optimization, grammar correction, text statistics, and URL slug generation

## Facts

- Endpoint: GET https://minia2a.uk/x402/content-studio
- Price: $3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/minia2a-content-studio-d71139b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Pnb-Z9EHfvdKzTCxjOO4s

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 minia2a-content-studio-d71139b2
```

Example prompt: Can you run my blog post draft through Content Studio — I need a summary, SEO tags, grammar corrections, word count stats, and a URL slug all at once?

## When to prefer this

Choose this endpoint when you need multiple content processing tasks performed simultaneously on a single piece of text — summarization, SEO, grammar, stats, and slug — rather than calling five separate specialized APIs. Ideal for content publishing pipelines, CMS integrations, or blog automation workflows where efficiency and cost-per-operation matter.

## Known failure modes

- Missing or empty input text returns an error
- Invalid query parameter format causes malformed request
- Content too long may exceed processing limits
- Network timeout on large text inputs
- Payment failure via x402 protocol blocks the request

## How this service works

Summarize+SEO+grammar+stats+slug. 5-in-1.

## Output

A combined response containing: a concise summary of the input text, SEO-optimized metadata (title/description/keywords), grammar-corrected version of the text, statistical metrics (word count, sentence count, readability), and a URL-safe slug derived from the content

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "method": {
     "type": "string"
    },
    "bodyType": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/minia2a-content-studio-d71139b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from minia2a.uk](https://www.zero.xyz/host/minia2a.uk/llms.txt)
