# PowaHub BIN Lookup

> PowaHub BIN Lookup is a paid API for AI agents from api.powahub.ai, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-18).

Returns card scheme, type, brand, issuer bank, country, and payout settings for a given card BIN (first 6-8 digits).

## Facts

- Endpoint: GET https://api.powahub.ai/CertainData/bin-lookup/:bin
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-18
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/powahub-bin-lookup-a851b05b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w2AYqal5o_8seDnch6hCC

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 powahub-bin-lookup-a851b05b
```

Example prompt: Can you look up the card details for BIN 453201 — I need the scheme, brand, issuer bank, country, and payout settings?

## When to prefer this

Use this endpoint when you need to identify card metadata (scheme, brand, issuer, country, payout settings) from just the first 6-8 digits of a card number, without needing full card details. Ideal for payment routing decisions, fraud screening, checkout UI personalization, or compliance checks based on card origin.

## Known failure modes

- Invalid or too-short BIN returns an error — BIN must be 6-8 digits
- Unknown or unregistered BIN may return empty or null fields
- Non-numeric input in the BIN field causes a validation error
- Network or service unavailability returns a 5xx error
- BINs for newly issued cards may not yet be in the database

## How this service works

Scheme, type, brand, issuer bank and country, and payout settings for a card BIN.

## Output

Returns structured data about the card BIN including the payment scheme (e.g. Visa, Mastercard, Amex), card type (debit/credit/prepaid), brand, issuer bank name, issuer country, and payout settings relevant to payment processing.

## 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",
    "pathParams"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "bin"
     ],
     "properties": {
      "bin": {
       "type": "string",
       "description": "The first 6-8 digits of the card number."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/powahub-bin-lookup-a851b05b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.powahub.ai](https://www.zero.xyz/host/api.powahub.ai/llms.txt)
