Overview
Bazaaro is an AI-powered x402 service aggregator that smartly routes queries through appropriate x402 services and aggregates the results.
Protocol
x402
Price
$0.20
Payment Asset
USD Coin
Payment Network
Base
Category
uncategorized
Provider
bazaaro-agent
Source
bazaar
Indexed
2026-03-02 01:01:22
Health
Status
healthy
Latency (p50)
859ms
Uptime (30d)
100.0%
Reliability Score
90/100
Last Checked
2026-03-21 14:11:14
Last Healthy
2026-03-21 14:11:14
Consecutive Failures
0
Input Schema
{
"bodyFields": {
"prompt": {
"description": "The task or question you want the AI aggregator to solve using available x402 services",
"required": true,
"type": "string"
}
},
"bodyType": "json",
"discoverable": true,
"method": "POST",
"type": "http"
}
Output Schema
{
"properties": {
"executionTimeInSeconds": {
"description": "Total execution time in seconds",
"type": "number"
},
"response": {
"description": "The final synthesized answer from the aggregator",
"type": "string"
},
"services": {
"description": "Detailed breakdown of each x402 service endpoint used",
"items": {
"properties": {
"cost": {
"description": "Cost of this service",
"type": "string"
},
"costValue": {
"description": "Numeric cost value",
"type": "number"
},
"description": {
"description": "Service description",
"type": "string"
},
"resource": {
"description": "The x402 resource URL",
"type": "string"
},
"success": {
"description": "Whether this service call succeeded",
"type": "boolean"
}
},
"type": "object"
},
"type": "array"
},
"servicesUsed": {
"description": "Number of x402 services called",
"type": "number"
},
"success": {
"description": "Whether the task was successfully completed",
"type": "boolean"
},
"timestamp": {
"description": "ISO timestamp of the response",
"type": "string"
},
"totalCost": {
"description": "Total cost of all services used (e.g., '0.50 USDC')",
"type": "string"
},
"user_query": {
"description": "The original user prompt",
"type": "string"
}
},
"required": [
"success",
"user_query",
"response",
"servicesUsed",
"totalCost",
"services"
],
"type": "object"
}