# Bitrefill Topups Search

> Bitrefill Topups Search is a paid API for AI agents from api.bitrefill.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Search for mobile top-up carriers and operators by name or country on the Bitrefill platform

## Facts

- Endpoint: GET https://api.bitrefill.com/x402/topups/search
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bitrefill-topups-search-d89e1924
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ZgsrybPL8rJzZ1PS5fzds

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-topups-search-d89e1924
```

Example prompt: Search Bitrefill for mobile top-up carriers available in Mexico — show me all operators I can recharge there.

## When to prefer this

Use this endpoint when you need to discover which mobile carriers or telecom operators are available for top-up on Bitrefill, especially before initiating a recharge transaction. Ideal for agents that need to resolve a carrier name or validate operator availability in a specific country before purchasing mobile credit with cryptocurrency.

## Known failure modes

- No results returned if search query doesn't match any known carrier
- Invalid country code returns empty or error response
- Missing required 'input' wrapper causes schema validation failure
- Overly broad query returns too many results to be actionable
- Payment of $0.002 USDC fails due to insufficient balance, blocking the request

## How this service works

Search mobile top-ups & prepaid airtime for carriers in 180+ countries. Pay in USDC via x402, no account.

## Output

A list of matching mobile carriers and operators available for top-up on Bitrefill, filtered by the provided search query and/or country code, including carrier names and relevant metadata needed to proceed with a purchase.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "description": "Search query (carrier or operator name)"
      },
      "country": {
       "type": "string",
       "description": "Optional ISO 3166-1 alpha-2 country code filter; omit for all countries (global results)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "products": [
   {
    "name": "Vodafone",
    "slug": "vodafone-gb",
    "country": "GB",
    "in_stock": true,
    "recipient_type": "phone_number"
   }
  ],
  "next_step": {
   "url": "/x402/products/detail",
   "body": {
    "slug": "<product slug from results>"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bitrefill-topups-search-d89e1924/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)
