# GiftPulse Mobile Carrier & Top-Up Lookup

> GiftPulse Mobile Carrier & Top-Up Lookup is a paid API for AI agents from giftpulse.theaslangroupllc.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Auto-detects the mobile carrier for a phone number and returns live top-up denomination ranges, amounts, and current discounts via Reloadly's operator auto-detect API.

## Facts

- Endpoint: GET https://giftpulse.theaslangroupllc.com/api/topup/lookup
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/giftpulse-mobile-carrier-top-up-lookup-cfdba1fc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Y2B_PUFIB5Hsm54hbKEE9

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 giftpulse-mobile-carrier-top-up-lookup-cfdba1fc
```

Example prompt: Before I send airtime, look up the mobile carrier and available top-up denominations for phone number +52-55-1234-5678 in Mexico so I know what amounts and discounts are available.

## When to prefer this

Use this endpoint when you need to identify a phone number's carrier and retrieve live top-up denomination options and discounts before quoting or executing an airtime transfer. Prefer this over POST /api/topup/quote when you want explicit carrier validation and denomination data as a separate step, or when building a UI that shows users their options before committing. If you only need a quote and are comfortable with auto-detection happening internally, POST /api/topup/quote can skip this step.

## Known failure modes

- Phone number not recognized or invalid format — returns error indicating undetectable carrier
- Phone number belongs to unsupported country or carrier not in Reloadly's network — returns no operator found
- Reloadly upstream service unavailable — returns 502 or timeout
- Missing required phone number parameter — returns 400 bad request
- Rate limiting or API key issues — returns 429 or 401

## How this service works

Auto-detect the mobile carrier for a phone number and return its live top-up amount range/denominations and current discount, before quoting or sending airtime. Wraps Reloadly's operator auto-detect. Run this (or POST /api/topup/quote directly, which auto-detects internally) before POST /api/topup.

## Output

Returns the detected mobile carrier name, operator ID, available top-up denominations or amount range (min/max), and any current promotional discount percentage applicable to the detected operator, sourced live from Reloadly.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "phone"
     ],
     "properties": {
      "phone": {
       "type": "string",
       "description": "Full E.164 phone number, e.g. +2348021234567"
      },
      "country_iso": {
       "type": "string",
       "description": "ISO-2 country override for shared calling codes (e.g. NANP +1)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/giftpulse-mobile-carrier-top-up-lookup-cfdba1fc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from giftpulse.theaslangroupllc.com](https://www.zero.xyz/host/giftpulse.theaslangroupllc.com/llms.txt)
