Publish agent-generated files, JSON reports, markdown, or text and return a stable public
Publish agent-generated files, JSON reports, markdown, or text and return a stable public URL.
5000 (raw units)
price
5
calls / 30d
3
unique payers
2026-09-14
updated
Provider
agent-artifact-eta.vercel.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x9720950D3E4D9E8c9e23E84e04e683b00204874c",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "storage",
"info": {
"category": "storage",
"description": "Publish agent-generated files, JSON reports, markdown, or text and return a stable public URL.",
"docsUrl": "https://agent-artifact-eta.vercel.app/api/docs",
"input": {
"body": {
"content": "# Findings\n\nThe result...",
"description": "A short agent-generated report.",
"format": "markdown",
"title": "Research summary"
},
"bodyType": "json",
"method": "POST",
"type": "http"
},
"name": "Agent Artifact Publisher",
"output": {
"example": {
"contentHash": "sha256:0000000000000000000000000000000000000000000000000000000000000000",
"format": "markdown",
"id": "art_01hxyz",
"mimeType": "text/markdown; charset=utf-8",
"rawUrl": "https://store.public.blob.vercel-storage.com/artifacts/art_01hxyz/content?download=1",
"sizeBytes": 8124,
"status": "published",
"url": "https://store.public.blob.vercel-storage.com/artifacts/art_01hxyz/content"
},
"type": "json"
},
"serviceName": "Agent Artifact Publisher",
"tags": [
"agent-artifacts",
"publishing",
"storage",
"reports"
]
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"content": {},
"description": {
"maxLength": 500,
"type": "string"
},
"format": {
"enum": [
"json",
"markdown",
"text",
"csv"
],
"type": "string"
},
"metadata": {
"additionalProperties": true,
"type": "object"
},
"title": {
"maxLength": 120,
"type": "string"
}
},
"required": [
"title",
"format",
"content"
]
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST",
"PUT",
"PATCH"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"additionalProperties": false,
"properties": {
"contentHash": {
"type": "string"
},
"format": {
"type": "string"
},
"id": {
"type": "string"
},
"mimeType": {
"type": "string"
},
"rawUrl": {
"format": "uri",
"type": "string"
},
"sizeBytes": {
"type": "number"
},
"status": {
"enum": [
"published"
],
"type": "string"
},
"url": {
"format": "uri",
"type": "string"
}
},
"required": [
"id",
"url",
"rawUrl",
"format",
"mimeType",
"sizeBytes",
"contentHash",
"status"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"agent-artifacts",
"publishing",
"storage",
"reports"
]
}
}Use it
curl
curl "https://agent-artifact-eta.vercel.app/api/artifacts/publish" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://agent-artifact-eta.vercel.app/api/artifacts/publish");
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://agent-artifact-eta.vercel.app/api/artifacts/publish")
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/7967.json, and this resource appears in /discovery/resources and /discovery/search.