# MiniUp Data File Presigned Upload URL

> MiniUp Data File Presigned Upload URL is a paid API for AI agents from www.miniup.io, paid per call via x402, $0.001000/call, status unknown (last checked 2026-09-14).

Generates a presigned upload URL for uploading data files (CSV, XLSX, JSON, GeoJSON, Shapefile ZIP, Parquet, or GeoParquet) to a MiniUp app.

## Facts

- Endpoint: POST https://www.miniup.io/api/x402/apps/:siteId/data-files/upload-url
- Price: $0.001000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/www-miniup-io-015b7cdd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_c41S6C_MEQNTCrmuzi-U6

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-015b7cdd -d '<json body>'
```

Example prompt: Give me a presigned upload URL for my MiniUp app (site ID: abc123) so I can upload a CSV data file.

## When to prefer this

Use this endpoint when you need to upload a raw data file (CSV, XLSX, JSON, GeoJSON, Shapefile ZIP, Parquet, or GeoParquet) to a MiniUp app as the first step before converting it into a queryable dataset. Prefer this over the multipart upload endpoint for single-part file uploads, and use it before calling the conversion endpoint to turn the file into a parquet-backed API dataset.

## Known failure modes

- Invalid or non-existent siteId returns a 404 or authorization error
- Unsupported file type results in a validation error
- Paying wallet does not own the specified app, returning an authorization/ownership error
- Expired presigned URL if not used within the validity window
- Payment failure or insufficient USDC balance blocks the request

## How this service works

Create a presigned upload URL for CSV, XLSX, JSON, GeoJSON, Shapefile ZIP, Parquet, or GeoParquet.

## Output

A presigned upload URL and associated credentials/metadata that allow the caller to directly upload a data file (CSV, XLSX, JSON, GeoJSON, Shapefile ZIP, Parquet, or GeoParquet) to the MiniUp platform for the specified app site.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "fileName": {
   "type": "string"
  },
  "fileSize": {
   "type": "number"
  },
  "fileType": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/www-miniup-io-015b7cdd/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)
