# MiniUp Insert Table Records

> MiniUp Insert Table Records is a paid API for AI agents from www.miniup.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Inserts one or more records into a MiniUp structured table-backed dataset owned by the authenticated paying wallet.

## Facts

- Endpoint: GET https://www.miniup.io/api/x402/tables/:tableId/records
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-miniup-io-817fa58d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zAuXmcLfLyu1kIKccptv8

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 www-miniup-io-817fa58d
```

Example prompt: Add a new record to my MiniUp table with ID 'tbl_abc123' — the row should have fields name: 'Alice', age: 30, and city: 'New York'.

## When to prefer this

Use this endpoint when you need to programmatically add new rows to a structured MiniUp table-backed API dataset that your wallet owns, especially in agent workflows that generate or collect data and need to persist it to a queryable table. Prefer this over file upload endpoints when your data is row-oriented and the table already exists.

## Known failure modes

- Invalid or non-existent tableId returns 404 not found
- Wallet does not own the table returns 403 forbidden
- Malformed or missing record payload returns 400 bad request
- Payment not provided or insufficient USDC balance returns 402 payment required
- Schema validation failure if record fields don't match table schema returns 422 unprocessable entity

## How this service works

Insert records into a table owned by the paying wallet.

## Output

A confirmation response indicating the record was successfully inserted, including the assigned record ID and the count of rows affected in the specified table.

## 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": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "tableId"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 200,
       "minimum": 1
      },
      "offset": {
       "type": "integer",
       "maximum": 100000,
       "minimum": 0
      },
      "tableId": {
       "type": "string",
       "maxLength": 128,
       "minLength": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-miniup-io-817fa58d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.miniup.io](https://www.zero.xyz/host/www.miniup.io/llms.txt)
