Welcome to Astroboy API

Advanced API tools for developers and security enthusiasts. Our suite of APIs provides comprehensive data services for BIN lookup, IP geolocation, random data generation, and API gateway information.

Available APIs

🏦 BIN Info API

Get detailed information about any Bank Identification Number including bank name, country, and card type.

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

🌍 IP Info API

Retrieve comprehensive information about any IP address including geolocation, ISP, and security data.

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

🎲 Random Info API

Generate random test data including names, addresses, emails, and phone numbers.

GET /api/random.php?type={type}&count={count}

🚪 Gateway API Info

Access information about API gateways, integration methods, and rate limiting.

GET /api/gateway.php

Quick Start

Test our APIs directly using curl commands or use the interactive console in each API section.

# Example: BIN Info API curl "https://astroboyapi.com/api/bin.php?bin=123456" # Example: IP Info API curl "https://astroboyapi.com/api/ip.php?ip=8.8.8.8" # Example: Random Info API curl "https://astroboyapi.com/api/random.php?type=address&count=2" # Example: Gateway API Info curl "https://astroboyapi.com/api/gateway.php"

BIN Info API

Get detailed information about any Bank Identification Number (BIN). This API provides comprehensive data including bank name, country, card type, and more.

Documentation

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

Parameters

{ "bin": "string (required) - The 6-8 digit BIN number to lookup" }

Example Request

GET /api/bin.php?bin=123456

Example Response

{ "success": true, "data": { "bin": "123456", "bank": "Demo Bank", "country": "United States", "country_code": "US", "card_type": "Credit", "card_brand": "Visa", "category": "Standard" } }

API Console

Response will appear here...

IP Info API

Retrieve comprehensive information about any IP address including geolocation, ISP details, and security information.

Documentation

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

Parameters

{ "ip": "string (required) - The IP address to lookup" }

Example Request

GET /api/ip.php?ip=8.8.8.8

Example Response

{ "success": true, "data": { "ip": "8.8.8.8", "country": "United States", "country_code": "US", "city": "Mountain View", "region": "California", "isp": "Google LLC", "timezone": "America/Los_Angeles", "is_proxy": false, "is_vpn": false } }

API Console

Response will appear here...

Random Info API

Generate random data for testing purposes including names, addresses, emails, and more.

Documentation

GET /api/random.php

Parameters

{ "type": "string (optional) - Type of random data: 'name', 'address', 'email', 'phone'", "count": "integer (optional) - Number of random items to generate (default: 1)" }

Example Request

GET /api/random.php?type=address&count=2

Example Response

{ "success": true, "data": [ { "name": "John Doe", "address": "123 Main St", "city": "New York", "state": "NY", "zip": "10001", "country": "US" }, { "name": "Jane Smith", "address": "456 Oak Ave", "city": "Los Angeles", "state": "CA", "zip": "90210", "country": "US" } ] }

API Console

Response will appear here...

Gateway API Info

Access information about API gateways and integration methods. Documentation and endpoints will be available soon.

Documentation

GET /api/gateway.php

Status

{ "status": "Coming Soon", "message": "Gateway API documentation and endpoints will be available soon.", "features": [ "API gateway information", "Integration methods", "Rate limiting details", "Authentication methods" ] }

API Console

This API is currently under development. Check back soon for interactive testing capabilities.

Gateway API will be available soon...