# AgentSpec Bazaar Metadata Generator

> AgentSpec Bazaar Metadata Generator is a paid API for AI agents from agentspec-one.vercel.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Generates an x402 Bazaar marketplace metadata draft from an AgentSpec report or service description.

## Facts

- Endpoint: POST https://agentspec-one.vercel.app/generate/bazaar-metadata
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentspec-one-vercel-app-e1d5b9b9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lDs-ZAVfE169ZOQB3OcW_

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 agentspec-one-vercel-app-e1d5b9b9 -d '<json body>'
```

Example prompt: Take my AgentSpec report for the weather lookup service and generate a draft x402 Bazaar metadata listing I can submit to the marketplace.

## When to prefer this

Use this endpoint when you have an AgentSpec report or structured service description and need to produce a ready-to-submit x402 Bazaar marketplace metadata draft. Ideal for developers automating the pipeline from API introspection to marketplace listing.

## Known failure modes

- Invalid or malformed AgentSpec report input returns 400 error
- Missing required service description fields causes incomplete metadata draft
- Rate limiting or payment failure via x402 returns 402 or 429
- Service unavailable returns 500 or timeout

## How this service works

Generate x402 Bazaar metadata draft from an AgentSpec report or service description.

## Output

Returns a structured x402 Bazaar metadata draft including capability descriptions, pricing fields, tags, and marketplace-ready listing content derived from the provided AgentSpec report or service description.

## Example request

```json
{
 "serviceName": "DataAnalyticsPlatform",
 "agentSpecReport": "Agent: DataAnalyticsPlatform\nVersion: 1.0\nDescription: A service that provides data analytics and reporting capabilities for business intelligence.\nCapabilities:\n- Generate custom reports\n- Real-time data visualization\n- Support for multiple data formats (CSV, JSON, Parquet)\nEndpoints:\n- POST /analytics/report\n- GET /analytics/dashboard\nAuthentication: OAuth 2.0\nRateLimit: 500 requests per minute\nAvailability: 99.5% uptime SLA",
 "notificationEmail": "zero-qa@agentmail.to",
 "serviceDescription": "A comprehensive data analytics platform for generating insights and business intelligence reports",
 "marketplaceCategory": "Business Intelligence & Analytics"
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object"
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {}
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentspec-one-vercel-app-e1d5b9b9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentspec-one.vercel.app](https://www.zero.xyz/host/agentspec-one.vercel.app/llms.txt)
