API · x402

Clone a public GitHub repository into a disposable Firecracker microVM, install depende…

Clone a public GitHub repository into a disposable Firecracker microVM, install dependencies, run one declared test, lint, or build script, and return structured logs plus the resolved commit. The service verifies execution, not semantic correctness; private…

by Saylor Innovations Knowledge Base · verified provider · updated 2026-09-25

What it does

Clone a public GitHub repository into a disposable Firecracker microVM, install dependencies, run one declared test, lint, or build script, and return structured logs plus the resolved commit. The service verifies execution, not semantic correctness; private repositories and arbitrary shell commands are not accepted.

Capabilities

  • verify a code change
  • run repository tests in isolation
  • produce build evidence

Tags: developer tools · code-verification · testing · build · sandbox · github

Use with an agent

  1. Discover. Agents find this listing with GET https://bazaar.saylorinnovations.com/discovery/search?query=…, the MCP tool search_resources, or /discovery/resources.
  2. Inspect. Fetch /resources/repository-build-and-test-verification.json for the price and payment options.
  3. Pay. Call GET https://saylorinnovations.com/api/code/verify. The provider answers 402 with its payment requirements. An x402 client signs one of the options below and retries with PAYMENT-SIGNATURE.
  4. Execute. The provider returns 200 with the data. Agent Bazaar is not in the request path and never sees your payment.

For humans

You don't need an account or an API key; you need a wallet holding a small amount of USDC or USDT on Solana, Base, Polygon, Arbitrum One, and an x402-capable client (see the examples below). Call the endpoint unpaid first to see exactly what it asks for.

Pricing & payment

Price
$0.25 / request
Protocol
x402 v2
Auth
No account or API key. Pay per request.
Networks
Solana, Base, Polygon, Arbitrum One

x402 payment requirements

SchemeNetworkAssetAmountPay toTimeout
exactSolana
solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
USDC$0.257LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7120s
exactSolana
solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
USDT$0.257LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7120s
exactBase
eip155:8453
USDC$0.250xf8A376eBF123D7252cd7b66bcD77A727a4def22f120s
exactPolygon
eip155:137
USDC$0.250xf8A376eBF123D7252cd7b66bcD77A727a4def22f120s
exactArbitrum One
eip155:42161
USDC$0.250xf8A376eBF123D7252cd7b66bcD77A727a4def22f120s
accepts[] (raw JSON)
[
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
    "asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
    "amount": "250000",
    "amountUsd": 0.25,
    "maxTimeoutSeconds": 120
  },
  {
    "scheme": "exact",
    "network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
    "payTo": "7LSjfrJf8fNsB8VA9u7N3WEn25smQLpob3SvyUvXacy7",
    "asset": "Es9vMFrzaCERmJfrF4H2FYD4KCoNkY11McCe8BenwNYB",
    "amount": "250000",
    "amountUsd": 0.25,
    "maxTimeoutSeconds": 120
  },
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "250000",
    "amountUsd": 0.25,
    "maxTimeoutSeconds": 120
  },
  {
    "scheme": "exact",
    "network": "eip155:137",
    "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
    "asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
    "amount": "250000",
    "amountUsd": 0.25,
    "maxTimeoutSeconds": 120
  },
  {
    "scheme": "exact",
    "network": "eip155:42161",
    "payTo": "0xf8A376eBF123D7252cd7b66bcD77A727a4def22f",
    "asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
    "amount": "250000",
    "amountUsd": 0.25,
    "maxTimeoutSeconds": 120
  }
]

Schemas

Output schema (JSON Schema)
{
  "type": "object",
  "required": [
    "verificationId",
    "verdict",
    "repository",
    "task",
    "steps",
    "startedAt",
    "finishedAt"
  ],
  "properties": {
    "verificationId": {
      "type": "string"
    },
    "verdict": {
      "type": "string",
      "enum": [
        "pass",
        "fail",
        "error"
      ]
    },
    "repository": {
      "type": "string",
      "format": "uri"
    },
    "resolvedCommit": {
      "type": [
        "string",
        "null"
      ]
    },
    "task": {
      "type": "string"
    },
    "packageManager": {
      "type": [
        "string",
        "null"
      ]
    },
    "steps": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "name",
          "exitCode",
          "durationMs"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "exitCode": {
            "type": [
              "integer",
              "null"
            ]
          },
          "durationMs": {
            "type": "integer"
          },
          "stdout": {
            "type": "string"
          },
          "stderr": {
            "type": "string"
          },
          "truncated": {
            "type": "boolean"
          }
        }
      }
    },
    "startedAt": {
      "type": "string",
      "format": "date-time"
    },
    "finishedAt": {
      "type": "string",
      "format": "date-time"
    },
    "isolation": {
      "type": "string"
    },
    "limitations": {
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  }
}
Example shape — generated from the schema, not a captured live response
{
  "verificationId": "string",
  "verdict": "pass",
  "repository": "https://example.com",
  "resolvedCommit": "string",
  "task": "string",
  "packageManager": "string",
  "steps": [
    {
      "name": "string",
      "exitCode": 0,
      "durationMs": 0,
      "stdout": "string",
      "stderr": "string",
      "truncated": true
    }
  ],
  "startedAt": "2026-01-01T00:00:00Z",
  "finishedAt": "2026-01-01T00:00:00Z",
  "isolation": "string",
  "limitations": [
    "string"
  ]
}

Examples

curl
curl "https://saylorinnovations.com/api/code/verify"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://saylorinnovations.com/api/code/verify");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}
Python
import httpx
res = httpx.get("https://saylorinnovations.com/api/code/verify")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Details

Provider
Saylor Innovations Knowledge Base
Endpoint
https://saylorinnovations.com/api/code/verify
License
Commercial — pay-per-request via x402
Repository
https://github.com/SaylorInnovations/solana-x402
Machine-readable
/resources/repository-build-and-test-verification.json