Welcome to Astroboy API

Advanced API tools for developers and security enthusiasts. Select a tool from the sidebar to get started.

🏦

BIN Info

Look up bank name, country, card type and level for any BIN number.

GET /api/bin.php
🌍

IP Info

Geolocation, ISP, risk scoring, and proxy/VPN detection for any IP.

GET /api/ip.php
🎲

Random Info

Generate realistic person data — name, address, email, phone, user-agent.

GET /api/random.php
🔑

Gateway Checker

Validate API keys for Stripe, Braintree, and Square gateways.

3 GATEWAYS

Quick Start

Test our APIs via curl or use the interactive tools in each section.

# BIN Info curl "https://astroboyapi.com/api/bin.php?bin=457173" # IP Info curl "https://astroboyapi.com/api/ip.php?ip=8.8.8.8" # Random Person curl "https://astroboyapi.com/api/random.php"

BIN Info

Look up any Bank Identification Number to get card brand, type, level, issuing bank, and country.

🏦 BIN Lookup

🏦

Enter a BIN number above and hit Look Up

GET /api/bin.php?bin={number}

Parameters

bin string (required) — 6-8 digit BIN number

Example Response

{ "bin": "457173", "brand": "Visa", "type": "Credit", "level": "Classic", "bank": "Chase Bank", "country": { "name": "United States", "Emoji": "🇺🇸" } }

IP Info

Get geolocation, ISP details, and fraud risk scoring for any IP address.

🌍 IP Lookup

🌍

Enter an IP address above and hit Look Up

GET /api/ip.php?ip={address}

Parameters

ip string (required) — Valid IPv4 or IPv6 address

Example Response

{ "IP Address": "8.8.8.8", "Risk Level": "Low", "Risk Score": 0, "City": "Mountain View", "Country": "United States", "ISP": "Google LLC" }

Random Info

Generate a realistic fake person profile — name, address, email, phone number, and user-agent.

🎲 Generate Person

No parameters needed. Each request generates a fresh random profile.

🎲

Hit the button above to generate a random person

GET /api/random.php

Description

No parameters required. Returns a random US-based person profile with contact info and user-agent string.

Example Response

{ "full_name": "John Doe", "street": "123 Main St", "city": "New York", "state": "NY", "zip": "10001", "phone": "+1-555-0123", "email": "john@example.com" }

Gateway Checker

Validate API keys for Stripe, Braintree, Square, and PayPal payment gateways.

🔑 Key Validator

🔑

Select a gateway and enter your keys to validate

Supported Gateways

Stripe

Input: Secret Key (sk_live_...) → Returns: Live/Dead status, Public Key, balance info

Braintree

Input: Merchant ID + Public Key + Private Key → Returns: Live/Dead status

Square

Input: Application ID + Access Token + Location ID → Returns: Live/Dead status

PayPal

Input: Client ID + Client Secret → Returns: Live/Dead status, App ID, balance info