Every API, one clean contract.
128 APIs · all speak the same { ok, data, meta, error }envelope. Search, filter, and open one to see endpoints, params & live examples.
Popular
Reputation & Reviews
11 APIsE-commerce & Marketplaces
24 APIsReal Estate
6 APIsJobs & Hiring
8 APIsTravel & Lodging
5 APIsSearch & SEO
4 APIsFinance & Data
5 APIsMedia, Film & Knowledge
15 APIsUtilities & AI
19 APIsDeveloper Tools
20 APIsClassifieds & Second-hand
4 APIsAsset-Generate
livepost/asset-generate/v1/qr1 creditGenerate a QR code (PNG or SVG) with custom fg/bg color, error-correction, and an OPTIONAL center logo fetched from logo_url (SSRF-guarded). Use error_correction=h when embedding a logo so it stays scannable.
{
"data": "https://reefapi.com",
"format": "png"
}Try in playground →post/asset-generate/v1/barcode1 creditGenerate a 1D barcode IMAGE (PNG or SVG) from data: EAN-13/8, UPC-A, Code-128, Code-39, ISBN-10/13, ITF, GS1-128, JAN, PZN, Codabar. Check digits are validated — a wrong EAN/UPC/ISBN check digit returns a structured error, not a silent fix.
{
"data": "5901234123457",
"type": "ean13"
}Try in playground →post/asset-generate/v1/code_image2 creditsRender a syntax-highlighted code snippet as a PNG with a carbon/ray.so-style window frame. 500+ languages (Pygments), 40+ themes, optional line numbers. Returns an IMAGE (unlike the deprecated NeutrinoAPI code-highlight which only returns HTML).
{
"code": "print('hello')",
"language": "python"
}Try in playground →post/asset-generate/v1/favicon2 creditsTurn one source image into a complete favicon bundle: multi-resolution favicon.ico, a named PNG set (16→512 incl. apple-touch-icon + android-chrome), site.webmanifest, and the ready-to-paste <head> <link> snippet. Source from image_url (SSRF-guarded) or a base64 upload.
post/asset-generate/v1/vcard1 creditBuild a vCard (.vcf) contact file from contact fields (vCard 3.0 or 4.0). Returns the raw.vcf text + a base64 data-URI you can download or encode into a QR.
{
"full_name": "Jane Doe",
"email": "[email protected]",
"phone": "+15550100"
}Try in playground →post/asset-generate/v1/ical1 creditBuild an iCalendar (.ics) event file from event fields (RFC 5545). Supports timed or all-day events, end-time or duration, location, description, organizer. Returns the raw.ics + a base64 data-URI.
{
"summary": "Standup",
"start": "2026-07-01T15:00:00Z",
"duration_minutes": 30
}Try in playground →post/asset-generate/v1/wifi1 creditGenerate a WiFi-join QR code (PNG/SVG) from network credentials — scan to connect, no typing. Encodes the standard WIFI: payload (WPA/WEP/open, hidden networks).
{
"ssid": "MyNet",
"password": "pw12345",
"encryption": "WPA"
}Try in playground →post/asset-generate/v1/batch1 creditGenerate up to 50 assets in one request. Items run independently — a bad item yields its own error entry, never fails the batch. NOTE: items that fetch a remote logo_url/image_url ARE supported and SSRF-guarded.
{
"items": [
{
"action": "qr",
"params": {
"data": "x"
}
},
{
"action": "barcode",
"params": {
"data": "5901234123457",
"type": "ean13"
}
},
{
"action": "barcode",
"params": {
"data": "bad",
"type": "ean13"
}
}
]
}Try in playground →
Social Media
7 APIs