Upload a file and get a temporary signed URL
Upload a file and get a temporary signed URL. Send raw file body with Content-Type header. Returns a URL valid for 1 hour.
1000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-17
updated
Provider
files.camelai.io · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x34D3eD2c5Fc6D6A0F25d1Aad77193a8AA88A52b5",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x34D3eD2c5Fc6D6A0F25d1Aad77193a8AA88A52b5",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "1000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "CvraJ4avKPpJNLvMhMH5ip2ihdt85PXvDwfzXdziUxRq",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"body": {
"input": {
"description": "Upload a raw file as the request body. Set Content-Type to the file's MIME type. Optionally set X-Filename header.",
"required": true,
"type": "string"
}
},
"bodyType": "raw",
"method": "POST",
"type": "http"
},
"output": {
"type": "json"
}
},
"schema": {
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"POST"
],
"type": "string"
}
},
"required": [
"method"
]
}
}
}
}
}Use it
curl
curl "https://files.camelai.io/" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://files.camelai.io/");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://files.camelai.io/")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/15386.json, and this resource appears in /discovery/resources and /discovery/search.