INTELLIGENCE

Know what your agents buy.

Costs, changes and evidence for better service decisions.

Cost intelligence

Find the better way to pay.

Compare service prices and payment options against your workload.

Scoped audits · customer usage requiredRequest a cost audit
Change intelligence

Know when your dependencies change.

Track payment offers, service schemas and provider changes over time.

Custom watchlists and historyDiscuss monitoring
Outcome intelligence

Connect the purchase to the result.

Bring charges, retries and task evaluations into one private evidence record.

Integration pilot · your task criteriaConnect your workflow

THE EVIDENCE BASE

Collected. Dated. Traceable.

Use the API
14,635Source listings
33Source snapshots
27,889Recorded changes
1,221Endpoint observations

Latest snapshot: Sep 12, 2026, 05:41 UTC. Daily collection; gaps remain unknown.

28 observations · Differences between dated observations.

random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "cd1760e19f518b50c9ffbaf84aa5ce626d53ffa2f8f27d71b5391096bf66618e",
  "schema_fingerprint": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "cd1760e19f518b50c9ffbaf84aa5ce626d53ffa2f8f27d71b5391096bf66618e",
  "schema_fingerprint": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "cd1760e19f518b50c9ffbaf84aa5ce626d53ffa2f8f27d71b5391096bf66618e",
  "schema_fingerprint": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "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.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "cd1760e19f518b50c9ffbaf84aa5ce626d53ffa2f8f27d71b5391096bf66618e",
  "schema_fingerprint": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "382b8312647110a124aca29eee9bbd2fa92a6158a6332bbbf5fb56d005fc177c",
  "schema_fingerprint": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "382b8312647110a124aca29eee9bbd2fa92a6158a6332bbbf5fb56d005fc177c",
  "schema_fingerprint": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "382b8312647110a124aca29eee9bbd2fa92a6158a6332bbbf5fb56d005fc177c",
  "schema_fingerprint": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "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": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "382b8312647110a124aca29eee9bbd2fa92a6158a6332bbbf5fb56d005fc177c",
  "schema_fingerprint": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "590c9208275094089c597ebb8aaa491ef9ee7c3eb3a5186a2ed3b658a9761c17",
  "schema_fingerprint": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "590c9208275094089c597ebb8aaa491ef9ee7c3eb3a5186a2ed3b658a9761c17",
  "schema_fingerprint": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "590c9208275094089c597ebb8aaa491ef9ee7c3eb3a5186a2ed3b658a9761c17",
  "schema_fingerprint": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "amount_encoding": "atomic_units",
      "amount_raw": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "issuer": null,
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "590c9208275094089c597ebb8aaa491ef9ee7c3eb3a5186a2ed3b658a9761c17",
  "schema_fingerprint": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many integers. Default 1.",
                "maximum": 1000,
                "minimum": 1,
                "type": "integer"
              },
              "max": {
                "description": "Inclusive upper bound (>= min).",
                "type": "integer"
              },
              "min": {
                "description": "Inclusive lower bound.",
                "type": "integer"
              }
            },
            "required": [
              "min",
              "max"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "a362e8714b420fb326952d15645a2d5a099a624f6764da13c25bd784099197fe",
  "schema_fingerprint": "df8ddd34af3013ffd66db8b40d323fbdcc9c2a35db11a7f301bb4a0b41ef1c21",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.
https://random.openverbs.com/v1/string
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate a random string of a given length from a named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58) or a custom alphabet. Unbiased character selection.",
  "domain": "random.openverbs.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": {
              "alphabet": {
                "description": "Custom alphabet; overrides charset. Duplicate characters are collapsed.",
                "maxLength": 256,
                "minLength": 2,
                "type": "string"
              },
              "charset": {
                "description": "Named charset (alphanumeric, alpha, lower, upper, numeric, hex, base58). Default alphanumeric.",
                "enum": [
                  "alphanumeric",
                  "alpha",
                  "lower",
                  "upper",
                  "numeric",
                  "hex",
                  "base58"
                ],
                "type": "string"
              },
              "length": {
                "description": "Length of the string.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              }
            },
            "required": [
              "length"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "a362e8714b420fb326952d15645a2d5a099a624f6764da13c25bd784099197fe",
  "schema_fingerprint": "f4826c6d639bbc578de96ce34478d00a9da6d0d712d50eae04ede05249ed669c",
  "service_id": "58de14a24114190110208530ac884ec067ad4d3361ede4c76d6f9d3dba7f48bf",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:07.504Z",
  "url": "https://random.openverbs.com/v1/string",
  "usage_rights": "not_reviewed"
}
random.openverbs.comDraw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.
https://random.openverbs.com/v1/sample
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Draw a random sample from a provided array — without replacement by default (a fair shuffle), or with replacement when unique is false. count defaults to 1.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "How many to draw. Default 1.",
                "maximum": 10000,
                "minimum": 1,
                "type": "integer"
              },
              "items": {
                "description": "The pool to sample from.",
                "maxItems": 10000,
                "minItems": 1,
                "type": "array"
              },
              "unique": {
                "description": "Draw without replacement. Default true.",
                "type": "boolean"
              }
            },
            "required": [
              "items"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "a362e8714b420fb326952d15645a2d5a099a624f6764da13c25bd784099197fe",
  "schema_fingerprint": "788d077b0aa98b5063fd852a78b6d758e82ddffc678cf5dc61549f412108a09e",
  "service_id": "bef57c3f6cf3dc110f5c5e77193ce4778446ffc1fbd4d7effd2b70bde9403c7e",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:09.621Z",
  "url": "https://random.openverbs.com/v1/sample",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate cryptographically-secure random bytes, returned as hex, base64 or base64url.
https://random.openverbs.com/v1/bytes
NetworkAdvertised amountBillingPayee
eip155:84530.002 USDC0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913Not specifiedexact0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A
Source and evidence
{
  "description": "Generate cryptographically-secure random bytes, returned as hex, base64 or base64url.",
  "domain": "random.openverbs.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": {
              "count": {
                "description": "Number of random bytes.",
                "maximum": 4096,
                "minimum": 1,
                "type": "integer"
              },
              "encoding": {
                "description": "Output encoding (hex, base64, base64url). Default hex.",
                "enum": [
                  "hex",
                  "base64",
                  "base64url"
                ],
                "type": "string"
              }
            },
            "required": [
              "count"
            ],
            "type": "object"
          },
          "bodyType": {
            "enum": [
              "json",
              "form-data",
              "text"
            ],
            "type": "string"
          },
          "method": {
            "enum": [
              "POST"
            ],
            "type": "string"
          },
          "type": {
            "const": "http",
            "type": "string"
          }
        },
        "required": [
          "type",
          "method",
          "bodyType",
          "body"
        ],
        "type": "object"
      }
    },
    "required": [
      "input"
    ],
    "type": "object"
  },
  "legacy_network": null,
  "legacy_pay_to": null,
  "legacy_price_basis": null,
  "legacy_price_usd": null,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789165815.545,
  "offers": [
    {
      "amount": "0.002",
      "amount_atomic": "2000",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "billing_unit": null,
      "billing_unit_basis": "withdrawn_protocol_inference",
      "currency": "USDC",
      "decimals": 6,
      "decimals_basis": "known_token_mapping",
      "extra": {
        "name": "USD Coin",
        "version": "2"
      },
      "network": "eip155:8453",
      "pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
      "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": "a362e8714b420fb326952d15645a2d5a099a624f6764da13c25bd784099197fe",
  "schema_fingerprint": "10a546c9ce7d551313ecf9cee3bc42fa860d507a33dc82bd3757029e72e4e3b4",
  "service_id": "f93ad3fc8a6b5eb4c2000c67b3bf06033a41659a13b5d4f6edefd0e7c80d60a0",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:02.935Z",
  "url": "https://random.openverbs.com/v1/bytes",
  "usage_rights": "not_reviewed"
}
random.openverbs.comGenerate one or more uniformly-distributed random integers in an inclusive [min, max] range.
https://random.openverbs.com/v1/integer

Historical reference. Full payment options and token precision were not retained.

Source and evidence
{
  "description": "Generate one or more uniformly-distributed random integers in an inclusive [min, max] range.",
  "domain": "random.openverbs.com",
  "evidence_mode": "legacy",
  "extension_names": [],
  "input_schema": null,
  "legacy_network": "eip155:8453",
  "legacy_pay_to": "0xb3f4de103F34b99f0Da19B4F16D6B53a14C2194A",
  "legacy_price_basis": "unverified_assumption_of_six_decimals",
  "legacy_price_usd": 0.002,
  "metadata": null,
  "method": "POST",
  "observed_at": 1789084800,
  "offers": [],
  "operator_identity": "not_verified",
  "output_schema": null,
  "protocol": "x402",
  "protocol_version": null,
  "quality": "not_evaluated",
  "run_id": "d501dccd0c616d852a3644376b5923a5b8f7f010c15ed8e85affa4b3b0c666da",
  "schema_fingerprint": "13977a04a9e309c6",
  "service_id": "00e35f49903d4fe01dccb9b1a97e2ba5d7cce8b76f544a2fa3cbd4c59ae80f7b",
  "source": "cdp-bazaar",
  "source_updated_at": "2026-09-06T08:10:05.052Z",
  "url": "https://random.openverbs.com/v1/integer",
  "usage_rights": "not_reviewed"
}

Outcome evidence starts with your workflow.

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 integration
Collection coverage

Discovery 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