APIThis

Zero Knowledge API Service

Rate limit: 60 requests per minute per IP

All requests require a valid User-Agent header

Supports JSON, XML, and Plain Text responses

CRYPTO Cryptography & Wallet Generation

Endpoint Parameters Description
/v1/crypto/hash algo, text algo: md5, sha1, sha256, sha384, sha512, sha3-256, sha3-512 Generate hash of text
/v1/crypto/wallet/generate coin Bitcoin-like: btc, ltc, doge, dash, bch, btg, dgb, rvn, zec
Ethereum-like: eth, bnb, matic, avax, ftm, arb, op, etc, cro
Other: sol, trx, xrp, atom, osmo, xlm, algo, xmr
Generate wallet for 25+ cryptocurrencies
/v1/crypto/encode format, text, decode? format: base64, base64url, hex, url | decode=true to decode Encode/decode text
/v1/crypto/uuid version?, count? version: 1, 4 (default), 7 | count: 1-100 Generate UUID(s)
/v1/crypto/password length?, count?, symbols?, ascii? length: 1-64 (default 16) | count: 1-100
symbols: adds !@#$%^&*() etc. to alphanumeric
ascii: uses ALL printable chars (32-126)
Generate secure password(s)

NETWORK Network Utilities

Endpoint Parameters Description
/v1/network/dns hostname Resolve hostname to IP address
/v1/network/geoip ip Get geographic location for IP address

GAMES Game Server Queries

Endpoint Parameters Description
/v1/games/minecraft/uuid name Convert Minecraft username to UUID
/v1/games/minecraft/server host, port? port default: 25565 Query Minecraft server status
/v1/games/source/server host, game? game: csgo (default), css, teamfortress2, garrysmod, rust Query Source Engine server

DICTIONARY Word Definitions

Endpoint Parameters Description
/v1/dictionary/define term Get Urban Dictionary definition
/v1/dictionary/example term Get Urban Dictionary usage example

MEDIA Media Information

Endpoint Parameters Description
/v1/media/youtube id, field? field: all (default), title, description, channel, thumbnail, views, likes, comments Get YouTube video statistics
/v1/media/anime search Search anime on MyAnimeList

MUSIC Random Music

Endpoint Parameters Description
/v1/music/nightcore - Random nightcore song URL
/v1/music/diversity - Random diversity promotions song
/v1/music/rucka - Random RuckaRuckaAli song

PHONE Phone Utilities

Endpoint Parameters Description
/v1/phone/lookup number International format without + (e.g., 14155552671) Look up phone number details (carrier, location, line type)

SYSTEM System Endpoints

Endpoint Parameters Description
/health Also: /v1/health - Check API health status, uptime, and memory usage

RANDOM Random Content

Endpoint Parameters Description
/v1/random/anime - Random anime picture URL
/v1/random/joke - Random yo mama joke
/v1/random/pickup - Random pickup/flirt line

Response Format

All endpoints return data in your chosen format (JSON, XML, or plain text). Example JSON response:

Success Response

{
  "success": true,
  "data": { ... }
}

Error Response

{
  "success": false,
  "error": "Error message"
}

Try It Out