x402 List

x402 Protocol Service Directory

Agent Utility Shop

Data

Paid x402 APIs and downloads for EU tender discovery, CSV/JSON quality, evidence-backed research, bounded Codex workflows, and automation toolkits. Base Mainnet USDC, structured outputs, no API keys.

Pay from $0.15 to $24.00 in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

UPTIME 24H 100% 7D 100% 30D 100%
BASE URL https://api.ikoles.dev WEBSITE https://ikoles.dev ENDPOINTS 6 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-21 MONITORED SINCE 2026-07-21

ASSESSMENT

updated 1h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 100%
uptime 24h
100%
uptime 7d
100%
uptime 30d
100%
uptime 90d
100%
response p95
367ms
avg response
174ms
total checks
24
compliance A (11/11)

11 of 11 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.15 to $24.00 (p96 in Data)
price (min)
$0.15
price (max)
$24.00
category percentile (min)
p96 in Data
category percentile (max)
p99 in Data
endpoints / prices
6 / 6
model
tiered
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

traction $0.15 30d · 1 buyers
volume 30d
$0.15
buyers 30d
1
settlements 30d
1
last settlement
2026-07-21
top buyer share
100% of 30d volume
trend 7d vs 30d
4.29x the 30d daily rate
networks
eip155:8453

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Provides paid machine-readable utilities for autonomous agents including EU tender discovery, structured-data cleanup, and sourced research.

category
data-utilities
in
body
data-processingresearchtender-discoveryautomationcsv-cleanupdata-normalization

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET
POST /v1/csv-cleanup $2.00 Base USDC
GET /v1/products/automation-data-toolkit-bundle $24.00 Base USDC
GET /v1/products/codex-safe-paid-work-kit $15.00 Base USDC
GET /v1/products/csv-json-quality-toolkit $9.00 Base USDC
POST /v1/research-brief $5.00 Base USDC
GET /v1/tender-shortlist $0.15 Base USDC
6 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /v1/products/automation-data-toolkit-bundle returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://api.ikoles.dev/v1/products/automation-data-toolkit-bundle'
// 402 response (captured by monitor) · 6 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "2000000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/csv-cleanup",
      "tags": [
        "CSV",
        "JSON",
        "data cleanup",
        "deduplication",
        "QA"
      ],
      "mimeType": "application/json",
      "description": "Normalize structured rows, remove blank rows, and deduplicate by configurable keys",
      "serviceName": "Agent Utility Shop CSV Cleanup"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "rows": [
                {
                  "email": " [email protected] ",
                  "company": "Example Ltd"
                },
                {
                  "email": "[email protected]",
                  "company": "Example Limited"
                }
              ],
              "keyColumns": [
                "email"
              ],
              "trimStrings": true,
              "dropBlankRows": true,
              "caseInsensitiveKeys": true
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "status": "accepted"
            }
          }
        },
        "schema": {
          "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",
                  "required": [
                    "rows"
                  ],
                  "properties": {
                    "rows": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "additionalProperties": {
                          "type": [
                            "string",
                            "number",
                            "boolean",
                            "null"
                          ]
                        }
                      },
                      "maxItems": 500,
                      "minItems": 1
                    },
                    "keyColumns": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      },
                      "maxItems": 25,
                      "minItems": 1
                    },
                    "trimStrings": {
                      "type": "boolean",
                      "default": true
                    },
                    "dropBlankRows": {
                      "type": "boolean",
                      "default": true
                    },
                    "caseInsensitiveKeys": {
                      "type": "boolean",
                      "default": true
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "5000000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/research-brief",
      "tags": [
        "research",
        "market intelligence",
        "source verification",
        "analysis"
      ],
      "mimeType": "application/json",
      "description": "Evidence-backed research brief with source URLs and explicit caveats",
      "serviceName": "Agent Utility Shop Research Brief"
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "context": "Prioritize protocols that work on Base Mainnet.",
              "maxWords": 800,
              "question": "Compare current agent-to-agent payment protocols for a small API provider.",
              "requiredSources": 3
            },
            "type": "http",
            "method": "POST",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "status": "accepted"
            }
          }
        },
        "schema": {
          "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",
                  "required": [
                    "question"
                  ],
                  "properties": {
                    "context": {
                      "type": "string",
                      "maxLength": 8000
                    },
                    "maxWords": {
                      "type": "integer",
                      "default": 800,
                      "maximum": 1500,
                      "minimum": 200
                    },
                    "question": {
                      "type": "string",
                      "maxLength": 4000,
                      "minLength": 10
                    },
                    "requiredSources": {
                      "type": "integer",
                      "default": 3,
                      "maximum": 10,
                      "minimum": 2
                    }
                  },
                  "additionalProperties": false
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "POST"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "150000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/tender-shortlist",
      "tags": [
        "procurement",
        "EU tenders",
        "x402 verification"
      ],
      "mimeType": "application/json",
      "description": "Default ranked EU public tender shortlist for GET-based x402 clients",
      "serviceName": "TenderSignal GET compatibility"
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "9000000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/products/csv-json-quality-toolkit",
      "tags": [
        "digital product",
        "agent toolkit",
        "download",
        "automation"
      ],
      "mimeType": "application/zip",
      "description": "Reusable local scripts, checks, and runbooks for cleaning and validating structured data.",
      "serviceName": "CSV/JSON Quality Toolkit"
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "15000000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/products/codex-safe-paid-work-kit",
      "tags": [
        "digital product",
        "agent toolkit",
        "download",
        "automation"
      ],
      "mimeType": "application/zip",
      "description": "Schemas, acceptance gates, and operational templates for reliable paid agent work.",
      "serviceName": "Codex Safe Paid Work Kit"
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xdcbebfd03dc6517aa1f8a72438caf2e943d542de",
        "amount": "24000000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://api.ikoles.dev/v1/products/automation-data-toolkit-bundle",
      "tags": [
        "digital product",
        "agent toolkit",
        "download",
        "automation"
      ],
      "mimeType": "application/zip",
      "description": "Complete bundle for agent automation, data QA, delivery validation, and operational handoff.",
      "serviceName": "Automation Data Toolkit Bundle"
    },
    "x402Version": 2
  }
]

UPTIME

07-21 · uptime 100.0% · 174ms avg07-2107-21
RESPONSE TIME
07-21 · 174ms avg07-21 · 174ms avg07-2107-21
90d UPTIME 100%
UPTIME 90D 100%
AVG RESP 166ms
TOTAL CHECKS 28

RECENT CHECKS

TIME STATUS RESP
● OK 97ms
● OK 166ms
● OK 87ms
● OK 126ms
● OK 152ms
● OK 173ms
● OK 206ms
● OK 126ms
● OK 112ms
● OK 138ms
● OK 129ms
● OK 149ms
● OK 141ms
● OK 104ms
● OK 112ms
● OK 79ms
● OK 192ms
● OK 107ms

OVER TIME

All charts share the 90d window selected here. Every series is also served as JSON at /api/v1/services/agent-utility-shop/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

PRICE (captured 402, USD)
building price history ($7.00)

Median across 6 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
building assessment history (1 day so far)
VOLUME (on-chain settlement, USD)
building volume history (1 day so far)
DISTINCT BUYERS
building buyer history (1 day so far)

COMPLIANCE

11/11 checks pass · grade A
  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS

EMBED THIS BADGE

Show that Agent Utility Shop is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

Agent Utility Shop listed on x402-list
status
Agent Utility Shop uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/agent-utility-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/agent-utility-shop.svg" alt="Agent Utility Shop listed on x402-list" height="28">
</a>
// Markdown
[![Agent Utility Shop on x402-list](https://x402-list.com/badge/agent-utility-shop.svg)](https://x402-list.com/services/agent-utility-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/agent-utility-shop?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/agent-utility-shop.svg?data=uptime" alt="Agent Utility Shop uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]