# Bitrefill x402 Checkout Info

> Bitrefill x402 Checkout Info is a paid API for AI agents from api.bitrefill.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15, last successful call 2026-07-18).

Returns the supported networks, full checkout route flow, and wallet persistence rules for the Bitrefill x402 storefront.

## Facts

- Endpoint: GET https://api.bitrefill.com/x402/checkout/info
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Last successful call: 2026-07-18
- Success rate: 100% of calls made through Zero
- Activations on Zero: 5
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitrefill-x402-checkout-info-aec777d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SOHSdZzqODDR2QUAcEFQL

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability bitrefill-x402-checkout-info-aec777d6
```

Example prompt: What networks and payment routes does the Bitrefill x402 storefront support, and what are the wallet persistence rules for checkout?

## When to prefer this

Use this endpoint first, before any other Bitrefill x402 API call, to understand which networks are supported and how the checkout flow is structured. Ideal for agents bootstrapping an integration with Bitrefill, verifying compatibility with a user's wallet network, or dynamically adapting to the supported payment routes without hardcoding configuration.

## Known failure modes

- Service unavailable (5xx) if the Bitrefill API is down
- Payment of 0.001 USDC not processed, resulting in 402 Payment Required
- Malformed request returns 400 Bad Request
- Rate limiting or quota exceeded returns 429

## How this service works

Discover the Bitrefill x402 storefront: supported networks, the full route flow, and wallet persistence rules.

## Output

Returns a structured description of the Bitrefill x402 storefront including: which blockchain networks are supported for payment, the step-by-step checkout route flow (from product selection to redemption), and rules governing how wallet sessions or state are persisted across the purchase journey.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "routes": [
   {
    "path": "/x402/gift-cards/search",
    "method": "GET",
    "purpose": "Search gift card products by query and country."
   }
  ],
  "service": "Bitrefill x402 storefront",
  "next_step": {
   "url": "/x402/gift-cards/search"
  },
  "supported_networks": [
   "eip155:8453",
   "solana:mainnet"
  ],
  "wallet_persistence": "Codes and eSIMs are bound to the paying wallet; recovery and top-ups require the same wallet"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bitrefill-x402-checkout-info-aec777d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.bitrefill.com](https://www.zero.xyz/host/api.bitrefill.com/llms.txt)
