Find the better way to pay.
Compare service prices and payment options against your workload.
Scoped audits · customer usage requiredRequest a cost auditINTELLIGENCE
Costs, changes and evidence for better service decisions.
Compare service prices and payment options against your workload.
Scoped audits · customer usage requiredRequest a cost auditTrack payment offers, service schemas and provider changes over time.
Custom watchlists and historyDiscuss monitoringBring charges, retries and task evaluations into one private evidence record.
Integration pilot · your task criteriaConnect your workflowTHE EVIDENCE BASE
Latest snapshot: Sep 12, 2026, 05:41 UTC. Daily collection; gaps remain unknown.
476 observations · Differences between dated observations.
| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.1 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Crawl multiple pages of a site, respecting link depth and domain limits. Returns async job_id; results include markdown or HTML per page. Use it to fetch and process many pages of content at once.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"formats": {
"description": "Output formats per page (default ['markdown']). 'html' adds raw HTML.",
"items": {
"enum": [
"markdown",
"html"
],
"type": "string"
},
"type": "array"
},
"limit": {
"description": "Maximum pages to crawl (default 100, max 100 per call). Returns 202 with job_id for async processing. For larger sites, issue several calls: each one is priced the same, so 1.000 pages cost ten calls.",
"exclusiveMinimum": true,
"maximum": 100,
"minimum": 0,
"type": "integer"
},
"max_depth": {
"description": "Maximum link depth from root (default 2, max 10). Depth 0 = root only, depth 1 = root + direct children.",
"exclusiveMinimum": true,
"maximum": 10,
"minimum": 0,
"type": "integer"
},
"same_domain": {
"description": "Only crawl URLs on the same domain (default true). Subdomain links are excluded when false.",
"type": "boolean"
},
"url": {
"description": "Root domain URL to crawl (e.g., https://example.com).",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.1",
"amount_atomic": "100000",
"amount_encoding": "atomic_units",
"amount_raw": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "5851e9dfa5b0b65d96105f251fee937e0a5df03d32fe523607f9701a2bb0e40d",
"service_id": "a6d096619db8b98ed64e7b13ebb8561c1e1fa3a9fdc0ec3cb8518e3d41521746",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-11T11:33:03.314Z",
"url": "https://api.agishub.com/paid/crawl",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.05 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Render a public URL or a raw HTML string into a PDF document, returned base64-encoded. Backed by a headless browser. Use for invoices, reports, receipts and any HTML-to-PDF need.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"format": {
"description": "Paper size (default A4).",
"enum": [
"A4",
"Letter",
"Legal",
"A3",
"A5",
"Tabloid"
],
"type": "string"
},
"html": {
"description": "Raw HTML string to render to PDF. Provide this OR url.",
"type": "string"
},
"landscape": {
"description": "Landscape orientation (default false = portrait).",
"type": "boolean"
},
"url": {
"description": "Public http/https URL to render to PDF. Provide this OR html.",
"format": "uri",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.05",
"amount_atomic": "50000",
"amount_encoding": "atomic_units",
"amount_raw": "50000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "cbb0f96a69b57b0a81601428544bc0a83684bc7c6d7ab3771f39a09cd76eb072",
"service_id": "ac5b2a8fc02fe9aa1839cdf71f32b3cbe1991a88d7d1d39d6dbbbfa0acc35479",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:36:01.64Z",
"url": "https://api.agishub.com/v1/pdf",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Get the current local time in an IANA timezone, including the UTC offset, zone abbreviation and whether DST is in effect. Use whenever you need to know what time it is 'now' somewhere.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"timezone": {
"description": "IANA timezone, e.g. 'Europe/Madrid', 'Asia/Kolkata'.",
"type": "string"
}
},
"required": [
"timezone"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "f5cc4ed8551c56e491914aa681541e5b15d38bbf3ce89480695e99df75a10a6c",
"service_id": "b0ffcd0458fac0149eb357b593200cf23bfd1af9535accf578e2a4e10ac8bec2",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:56:52.427Z",
"url": "https://api.agishub.com/v1/time-now",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.02 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Ask a general-purpose LLM a question or give it an instruction, with an optional system prompt. No external API key required.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"max_tokens": {
"description": "Maximum tokens to generate (default 512).",
"exclusiveMinimum": true,
"maximum": 2048,
"minimum": 0,
"type": "integer"
},
"prompt": {
"description": "The user's message or question for the assistant.",
"minLength": 1,
"type": "string"
},
"system": {
"description": "Optional system instruction to steer the assistant's behaviour/persona.",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.02",
"amount_atomic": "20000",
"amount_encoding": "atomic_units",
"amount_raw": "20000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "d255075844afa18b6d7a976941c67650796ed8d434e04e9d126ed493d1d33350",
"service_id": "b41a766adc83a3350b6eb85b47404d6ef5e1e50ae3f3511fa5b46c1ef165ac62",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-09T00:02:56.103Z",
"url": "https://api.agishub.com/v1/chat",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.1 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Drive a headless browser: open a URL and run an ordered list of steps — click, type, press keys, wait, extract text and screenshot. For flows the plain scraper can't reach (logins, forms, multi-step pages).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"screenshot": {
"description": "Also return a final full-page PNG screenshot (base64).",
"type": "boolean"
},
"steps": {
"description": "Ordered actions to perform after the page loads.",
"items": {
"additionalProperties": false,
"properties": {
"action": {
"description": "What to do.",
"enum": [
"click",
"type",
"press",
"wait",
"extract_text",
"screenshot"
],
"type": "string"
},
"ms": {
"description": "Milliseconds to wait (wait, when no selector given).",
"maximum": 10000,
"minimum": 0,
"type": "integer"
},
"selector": {
"description": "CSS selector (for click/type/wait-for/extract_text).",
"type": "string"
},
"text": {
"description": "Text to type (type), or key to press (press, e.g. 'Enter').",
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
},
"maxItems": 20,
"type": "array"
},
"url": {
"description": "Starting URL to open in a headless browser.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.1",
"amount_atomic": "100000",
"amount_encoding": "atomic_units",
"amount_raw": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "a927fea6284fee86286fe9ab78516bde464a60fb52ec6990a1a97bf454c4fded",
"service_id": "bc326c1e396ede8ffc1a935b570163123b31c1928c1be52146456cc1b61cc12d",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:57:41.455Z",
"url": "https://api.agishub.com/paid/browser-automate",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Convert a specific date/time from one IANA timezone to another (single or batch). Accepts ISO 8601 or natural language ('next Tuesday 3pm'). Returns the converted datetime with UTC offset, zone abbreviation and DST flag.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"datetime": {
"description": "ISO 8601 or natural language, e.g. \"2026-07-09T15:30\" or \"next Tuesday 3pm\".",
"type": "string"
},
"from": {
"description": "Source IANA timezone.",
"type": "string"
},
"to": {
"description": "Target IANA timezone.",
"type": "string"
}
},
"required": [
"datetime",
"from",
"to"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "2f213d5c7855b1d189daa8f1a5f700dc343ac6f00384b2852e6c37e636a6f12d",
"service_id": "bcdc2f6973e9d5a9fb018bbca6cfa416b7d30130fea655b4d034ed641716df4e",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:55:52.818Z",
"url": "https://api.agishub.com/v1/time-convert",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.05 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Convert text into spoken audio (returned base64-encoded MP3), in several languages.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"lang": {
"description": "Language of the text (default 'en').",
"enum": [
"en",
"es",
"fr",
"zh",
"jp",
"kr"
],
"type": "string"
},
"text": {
"description": "The text to convert to spoken audio.",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.05",
"amount_atomic": "50000",
"amount_encoding": "atomic_units",
"amount_raw": "50000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "cc7313eae6278c811333d0cfbd21cf6161c4189b234900c15afc7b5d6ac89e4b",
"service_id": "be5aa8ddbe7173054cd73cadad240fab9788547e51881484cb09e03df669c754",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:36:54.287Z",
"url": "https://api.agishub.com/v1/audio-speak",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.02 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Classify a text into exactly one of the candidate labels you provide (e.g. sentiment, topic, intent).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"labels": {
"description": "Candidate labels to choose from, e.g. ['positive','negative','neutral'].",
"items": {
"minLength": 1,
"type": "string"
},
"maxItems": 20,
"minItems": 2,
"type": "array"
},
"text": {
"description": "The text to classify.",
"minLength": 1,
"type": "string"
}
},
"required": [
"text",
"labels"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.02",
"amount_atomic": "20000",
"amount_encoding": "atomic_units",
"amount_raw": "20000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "1411ced17bb8f57a818025ef98f06a13867f8ee358592dba54431aae58f195fa",
"service_id": "c4a3548ee997bb02ec79b74b25749fc695e40d117720b67680194a2e40b70794",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-09T00:01:39.394Z",
"url": "https://api.agishub.com/v1/classify",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.1 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Find working-hour time slots that overlap across participants in different timezones for a meeting of a given duration, excluding weekends and (when a country is given per participant) that person's public holidays. Free tier returns at most 1 slot; the paid endpoint returns every matching slot (see 'upgrade' in the response).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"date_range": {
"additionalProperties": false,
"description": "Inclusive date window to search, e.g. { \"start\":\"2026-07-13\", \"end\":\"2026-07-17\" }.",
"properties": {
"end": {
"description": "Last date to search \"YYYY-MM-DD\".",
"type": "string"
},
"start": {
"description": "First date to search \"YYYY-MM-DD\".",
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
},
"duration": {
"description": "Meeting duration in minutes.",
"type": "number"
},
"participants": {
"description": "The people to meet. Each participant is { timezone (IANA, required), working_hours? { start, end }, country? (ISO alpha-2) }.",
"items": {
"additionalProperties": false,
"properties": {
"country": {
"description": "ISO 3166-1 alpha-2 code (e.g. 'US', 'ES') to exclude that person's public holidays.",
"type": "string"
},
"timezone": {
"description": "Participant's IANA timezone, e.g. 'Europe/Madrid'.",
"type": "string"
},
"working_hours": {
"additionalProperties": false,
"description": "This participant's local working hours. Defaults to 09:00-17:00.",
"properties": {
"end": {
"description": "Local end time \"HH:mm\" (24h), e.g. \"17:00\".",
"type": "string"
},
"start": {
"description": "Local start time \"HH:mm\" (24h), e.g. \"09:00\".",
"type": "string"
}
},
"required": [
"start",
"end"
],
"type": "object"
}
},
"required": [
"timezone"
],
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"participants",
"duration",
"date_range"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.1",
"amount_atomic": "100000",
"amount_encoding": "atomic_units",
"amount_raw": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "4ecd72e645398faceb89e81cfa6d874ca5572affa43bd942262620729f7928d9",
"service_id": "c523f704e63db846c7146b4f1881e39aa3cc5a54fe31ca440d4ad35c83c68ed7",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:47:52.954Z",
"url": "https://api.agishub.com/v1/meeting-slots",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Convert a value between units of the same category: length, mass, volume, speed, area, digital storage, time, and temperature (Celsius/Fahrenheit/Kelvin).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"from": {
"description": "Source unit, e.g. 'km', 'mi', 'kg', 'lb', 'C', 'F', 'GB', 'm/s'.",
"type": "string"
},
"to": {
"description": "Target unit in the SAME category as 'from', e.g. 'mi', 'km', 'lb', 'F'.",
"type": "string"
},
"value": {
"description": "The numeric value to convert.",
"type": "number"
}
},
"required": [
"value",
"from",
"to"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "d94b6f97d3e6fd357c35466e3307ab7a739a193985c360368db4334f99166898",
"service_id": "c60fc1098d0b59a56dc740e2fef94e068fcdf3f9bc58225931287753a853af67",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:53:56.855Z",
"url": "https://api.agishub.com/paid/units-convert",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Convert a value between units of the same category: length, mass, volume, speed, area, digital storage, time, and temperature (Celsius/Fahrenheit/Kelvin).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"from": {
"description": "Source unit, e.g. 'km', 'mi', 'kg', 'lb', 'C', 'F', 'GB', 'm/s'.",
"type": "string"
},
"to": {
"description": "Target unit in the SAME category as 'from', e.g. 'mi', 'km', 'lb', 'F'.",
"type": "string"
},
"value": {
"description": "The numeric value to convert.",
"type": "number"
}
},
"required": [
"value",
"from",
"to"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "d94b6f97d3e6fd357c35466e3307ab7a739a193985c360368db4334f99166898",
"service_id": "cabfd7f173b767b9934d6354d72807ae458e29331d3d018667dfbf1d1dd10995",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:49:52.308Z",
"url": "https://api.agishub.com/v1/units-convert",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Turn text into a numeric embedding vector for semantic search, RAG and similarity. Multilingual.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to embed into a numeric vector for semantic search / RAG.",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "3a2cff419ff92a313498020b233b9512a030634032d253c7dedd7928f7c24238",
"service_id": "cb5749f636c8aad20cc1204b2731555d67f002d3622c96ca2504915cc2466066",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:51:23.295Z",
"url": "https://api.agishub.com/paid/embed",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Turn text into a numeric embedding vector for semantic search, RAG and similarity. Multilingual.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"text": {
"description": "Text to embed into a numeric vector for semantic search / RAG.",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "3a2cff419ff92a313498020b233b9512a030634032d253c7dedd7928f7c24238",
"service_id": "db30af4a5e05b036528293a744ff018cf505caf419620349b4ff3d5a6ca4a256",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T19:08:52.686Z",
"url": "https://api.agishub.com/v1/embed",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.02 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Ask a general-purpose LLM a question or give it an instruction, with an optional system prompt. No external API key required.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"max_tokens": {
"description": "Maximum tokens to generate (default 512).",
"exclusiveMinimum": true,
"maximum": 2048,
"minimum": 0,
"type": "integer"
},
"prompt": {
"description": "The user's message or question for the assistant.",
"minLength": 1,
"type": "string"
},
"system": {
"description": "Optional system instruction to steer the assistant's behaviour/persona.",
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.02",
"amount_atomic": "20000",
"amount_encoding": "atomic_units",
"amount_raw": "20000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "d255075844afa18b6d7a976941c67650796ed8d434e04e9d126ed493d1d33350",
"service_id": "de08328a92d496c66914b64717f3ca2d533533a664a30f56f9548ab1c0878413",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:50:44.357Z",
"url": "https://api.agishub.com/paid/chat",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.02 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Summarize a block of text into a short abstract, with an optional target length. No external API key required.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"max_words": {
"description": "Approximate maximum length of the summary, in words (default ~80).",
"exclusiveMinimum": true,
"maximum": 400,
"minimum": 0,
"type": "integer"
},
"text": {
"description": "The text to summarize.",
"minLength": 1,
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.02",
"amount_atomic": "20000",
"amount_encoding": "atomic_units",
"amount_raw": "20000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "a53a116657c67a846a81a1ffc84a5599403a38a88465ff9a6b2fa78f1b173336",
"service_id": "e68f42b09d5cab7d0c56d6cd7a24cea260b1a000a8753d93551c43491e7dcc27",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T19:06:54.642Z",
"url": "https://api.agishub.com/v1/summarize",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "List or search valid IANA timezone identifiers by city/region/country, and resolve a city/country name to its timezone(s). Use it to discover the exact identifier to pass to the other tools.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"query": {
"description": "Case-insensitive substring filter.",
"type": "string"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "b426628baac93bcbb66852aa5cf356852589758409518bb99ae50277f7eb88ae",
"service_id": "ee3700a6b3e69102c67419cf7fa9dd94e755ebcbb00854f520b29e0a708a6d45",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:57:03.285Z",
"url": "https://api.agishub.com/paid/timezones",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Check whether a given date is a public holiday in a country (identified by its ISO 3166-1 alpha-2 code), and return the holiday name if so. Backed by an authoritative public-holiday dataset.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"country_code": {
"description": "ISO country code, e.g. \"US\", \"ES\", \"IN\".",
"type": "string"
},
"date": {
"description": "Date \"YYYY-MM-DD\".",
"type": "string"
}
},
"required": [
"date",
"country_code"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "0d1955125f955a705d08fd7b176cecfeb74f6aac0eb5fcdcf3fd47820ef17881",
"service_id": "fcdb0e652615614f28ba664a7b1b92c399ed093f696a780ae9968c04f9be765e",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:47:01.655Z",
"url": "https://api.agishub.com/v1/time-holiday",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Shorten a long URL into a compact api.agishub.com/s/<code> link that redirects to the original. Codes are stored for a year.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"url": {
"description": "The long http/https URL to shorten.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789191719.42,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "9895bd56e6d867a8f7f441d31e3c37014e6e211256019c569d02b946b0bc1b02",
"schema_fingerprint": "d116bc86cf0ddf75bb088511724f070d6250fcd5f1d886862ba71615e4e3858a",
"service_id": "fee68ba2251bd2834721a5ba8b82967143a7196f4807be15683fbd9a148490bb",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:57:15.334Z",
"url": "https://api.agishub.com/paid/shorten",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Shorten a long URL into a compact api.agishub.com/s/<code> link that redirects to the original. Codes are stored for a year.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"url": {
"description": "The long http/https URL to shorten.",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "d116bc86cf0ddf75bb088511724f070d6250fcd5f1d886862ba71615e4e3858a",
"service_id": "00232c6fbfa6941919b0b5b9af18b4188ba53b26f5b2f7fdccc4bf50b8c6e27c",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:34:52.939Z",
"url": "https://api.agishub.com/v1/shorten",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.03 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Extract specific elements from a JavaScript-rendered page by CSS selector. Give a list of selectors (e.g. 'h1', '.price', 'a.product') and get back the text and attributes of every match. Backed by a headless browser, so it works on SPAs and JS-heavy pages.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"selectors": {
"description": "CSS selectors to extract, e.g. ['h1', 'a.product', '.price']. Returns the text and attributes of every match per selector.",
"items": {
"minLength": 1,
"type": "string"
},
"maxItems": 20,
"minItems": 1,
"type": "array"
},
"url": {
"description": "Full http/https URL of the page to scrape.",
"format": "uri",
"type": "string"
}
},
"required": [
"url",
"selectors"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.03",
"amount_atomic": "30000",
"amount_encoding": "atomic_units",
"amount_raw": "30000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "5d82bc1bf48a3bcfc36fb7e850334ba763208c27810757aefb3392ef499a7baa",
"service_id": "069b0c9013229c48f40f89916520294b2eda87c7a62e1cf9c4e4f17d2100eacf",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T19:04:56.741Z",
"url": "https://api.agishub.com/v1/scrape",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.1 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Generate an image from a text prompt (returned base64-encoded PNG).",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"prompt": {
"description": "Text description of the image to generate.",
"minLength": 1,
"type": "string"
},
"steps": {
"description": "Diffusion steps (1-8, default 4). More = higher quality but slower.",
"maximum": 8,
"minimum": 1,
"type": "integer"
}
},
"required": [
"prompt"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.1",
"amount_atomic": "100000",
"amount_encoding": "atomic_units",
"amount_raw": "100000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "49990f2a60223a9bea67e825d110197d6d800a742d5cc7c515481db2f92ad526",
"service_id": "0a9e58f8d38ce5482a0b0d923c4f9d7fca1ea2d6d85c978ffa8369f0224bf117",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-08T18:40:54.678Z",
"url": "https://api.agishub.com/v1/generate-image",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Get the exact UTC offset of an IANA timezone at a given instant, DST-aware. Correctly handles fractional offsets such as India +05:30 and Nepal +05:45.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"instant": {
"description": "ISO 8601 or natural language. Defaults to now.",
"type": "string"
},
"timezone": {
"description": "IANA timezone.",
"type": "string"
}
},
"required": [
"timezone"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "70cda57c07d93cb6000c96249cce8e7cc96979ede9d3b324e82ba8f76d5d2bfd",
"service_id": "0bd7b1a12ef4a0139794516cfdc5019790d64f06bb8af6d81563667051818110",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:56:49.895Z",
"url": "https://api.agishub.com/paid/time-offset",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Store a piece of text in a persistent, searchable memory collection (namespace). Embedded and indexed for later semantic recall.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"id": {
"description": "Optional stable id to update an existing entry; auto-generated if omitted.",
"type": "string"
},
"namespace": {
"description": "Your collection key — groups and isolates your memories. Treat it like a secret: anyone with it can read/write this collection.",
"minLength": 1,
"type": "string"
},
"text": {
"description": "The text/content to store and make searchable.",
"minLength": 1,
"type": "string"
}
},
"required": [
"namespace",
"text"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "11797d3feef77d39b20347a8728cebc42f78106adae0fe3e6730e3238720331f",
"service_id": "0d6ea3d32ec16a07aecd877a4e360048660a441ddc3c389cc153966713b57eac",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:55:20.003Z",
"url": "https://api.agishub.com/paid/memory-store",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.01 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Convert a specific date/time from one IANA timezone to another (single or batch). Accepts ISO 8601 or natural language ('next Tuesday 3pm'). Returns the converted datetime with UTC offset, zone abbreviation and DST flag.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"datetime": {
"description": "ISO 8601 or natural language, e.g. \"2026-07-09T15:30\" or \"next Tuesday 3pm\".",
"type": "string"
},
"from": {
"description": "Source IANA timezone.",
"type": "string"
},
"to": {
"description": "Target IANA timezone.",
"type": "string"
}
},
"required": [
"datetime",
"from",
"to"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.01",
"amount_atomic": "10000",
"amount_encoding": "atomic_units",
"amount_raw": "10000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "2f213d5c7855b1d189daa8f1a5f700dc343ac6f00384b2852e6c37e636a6f12d",
"service_id": "0db3cf5ffba0829397b3dab68045b8c2c85f0d6bb3637f96ee2eb12e1c1dbfa4",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:56:08.874Z",
"url": "https://api.agishub.com/paid/time-convert",
"usage_rights": "not_reviewed"
}| Network | Advertised amount | Billing | Payee |
|---|---|---|---|
| eip155:8453 | 0.05 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 | Not specifiedexact | 0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d |
{
"description": "Transcribe an audio file (given by public URL) to text. Handles mp3, wav, m4a, ogg and more.",
"domain": "api.agishub.com",
"evidence_mode": "raw",
"extension_names": [
"bazaar"
],
"input_schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"audio_url": {
"description": "Public URL of an audio file (mp3, wav, m4a, ogg, ...) to transcribe to text.",
"format": "uri",
"type": "string"
}
},
"required": [
"audio_url"
],
"type": "object"
},
"bodyType": {
"enum": [
"json"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"enum": [
"http"
],
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"additionalProperties": false,
"properties": {
"example": {
"type": "object"
},
"type": {
"enum": [
"json"
],
"type": "string"
}
},
"required": [
"type",
"example"
],
"type": "object"
}
},
"required": [
"input",
"output"
],
"type": "object"
},
"legacy_network": null,
"legacy_pay_to": null,
"legacy_price_basis": null,
"legacy_price_usd": null,
"metadata": null,
"method": "POST",
"observed_at": 1789166492.489,
"offers": [
{
"amount": "0.05",
"amount_atomic": "50000",
"amount_encoding": "atomic_units",
"amount_raw": "50000",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"billing_unit": null,
"billing_unit_basis": "commercial_terms_not_validated",
"currency": "USDC",
"decimals": 6,
"decimals_basis": "known_token_mapping",
"extra": {
"name": "USD Coin",
"version": "2"
},
"issuer": null,
"network": "eip155:8453",
"pay_to": "0x23Fc725e8EAa1c58900C6507Ba89be99a6DFc75d",
"price_basis": "advertised",
"scheme": "exact",
"timeout_seconds": 300,
"usd_market_value": null
}
],
"operator_identity": "not_verified",
"output_schema": null,
"protocol": "x402",
"protocol_version": 2,
"quality": "not_evaluated",
"run_id": "a2d71bc23fe499771cb704508ed1f9963e3d6a9527f1544d038dc3d3ae01df5a",
"schema_fingerprint": "a7dc9d757736abf430a63e095923deee543a2d73dab85322bd4aff7f7d0ad572",
"service_id": "1ae731189c209edc0d518d58fe23212ace12c25bd96e6087c026447f71a3d054",
"source": "cdp-bazaar",
"source_updated_at": "2026-09-07T20:52:56.071Z",
"url": "https://api.agishub.com/paid/audio-transcribe",
"usage_rights": "not_reviewed"
}Private intake is ready for task IDs, charges, retries, result fingerprints and your evaluation criteria. Public performance comparisons need measured results; we do not have that benchmark yet.
Discuss an outcome integrationDiscovery comes from configured registries. Endpoint checks record responses, not task success. Older snapshots retain less detail. Customer usage, commercial terms and task evaluations require additional evidence.
1,423 historical or current source records quarantined during normalization; they are excluded from public comparisons.
43 of 43 archive objects verified in Backblaze. Last verification: Sep 12, 2026, 05:56 UTC.
Collection status JSON