# Anicca GPU Container Rental (rent-a-box)

> Anicca GPU Container Rental (rent-a-box) is a paid API for AI agents from anicca-x402-discovery-production.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15, last successful call 2026-08-07).

Provisions a GPU container from a supplied Docker image, runs it for up to 60 minutes, and returns a public URL — payment is USDC on Base via x402, no account required.

## Facts

- Endpoint: POST https://anicca-x402-discovery-production.up.railway.app/rent-a-box
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-08-07
- Success rate: 50% of calls made through Zero
- Rating: 3.7 / 5 from 1 review
- Activations on Zero: 2
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anicca-gpu-container-rental-rent-a-box-33b57d6f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tR87Zh_RdUHwkPncNFfRY

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 anicca-gpu-container-rental-rent-a-box-33b57d6f -d '<json body>'
```

Example prompt: Spin up a GPU container using the Docker image 'ghcr.io/my-org/llm-inference:latest' and give me the public URL I can hit — pay with USDC on Base, no account needed.

## When to prefer this

Choose this endpoint when you need a temporary, publicly accessible GPU container without any cloud account setup, Solana wallet, or NOS tokens — ideal for one-off inference jobs, demos, or batch tasks where paying a flat USDC fee on Base is preferable to managing cloud credentials. Best for workloads that fit within 60 minutes and where a public URL is sufficient for interaction.

## Known failure modes

- Invalid or inaccessible Docker image — container fails to pull and no URL is returned
- Payment failure or insufficient USDC balance on Base — request rejected before provisioning
- Container startup timeout — image too large or takes too long to initialize
- GPU capacity unavailable — no hardware available at time of request
- Container crashes at boot — misconfigured entrypoint or missing dependencies in image

## How this service works

Rent a GPU container for up to 60 minutes and get a public URL. You supply the image; we pay the market. No signup, no Solana wallet, no NOS token — pay USDC on Base and get a URL back in one call.

## Output

A public HTTP URL pointing to the running GPU container, valid for up to 60 minutes, along with session metadata. The container is live and addressable immediately after the call resolves.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {}
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anicca-gpu-container-rental-rent-a-box-33b57d6f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from anicca-x402-discovery-production.up.railway.app](https://www.zero.xyz/host/anicca-x402-discovery-production.up.railway.app/llms.txt)
