APIMeta – Powerful APIs for Developers
Generate QR codes, shorten URLs, access country data, and test offers—all through simple REST APIs.
What You Can Build
Powerful endpoints to accelerate your development
QR Codes
Generate dynamic QR codes in PNG, SVG, or EPS format with custom colors and logos.
URL Shortener
Create branded short links with custom aliases and track redirects.
Country Data
Access ISO country codes, names, and regional data in JSON format.
Offer Testing
Test campaign routing and offer availability by country and platform.
Try It Live
Test our APIs directly in your browser
QR Code Generator
Generated QR code will appear here
URL Shortener
Shortened URL will appear here
API Endpoints
Complete reference for all available endpoints
QR Code API
Generate QR codes with extensive customization
Simple Generation
GET /qrcode/get?apikey={key}&data={text}&format=png&output=img
Advanced Generation
GET /qrcode/add?apikey={key}&type=link&url={url}&size=500&format=svg
Parameters
format: png, svg, epsoutput: json (data URI) or img (raw)type: text, link, email, phone, whatsapp, wifi, geosize: 50-1000 pixelsmargin: 0-50 pixelsforeground: hex color (#000000)background: hex color (#FFFFFF)logo: logo URL (PNG only)
URL Shortener API
Create and manage short links
Create Short URL
POST /url/add?apikey={key}
Content-Type: application/json
{
"url": "https://example.com",
"custom": "my-link"
}
Access Short URL
GET /s/{code}
Response
{
"status": "success",
"data": {
"id": "abc123",
"shorturl": "https://api.example.com/s/abc123",
"longurl": "https://example.com"
}
}
Country List API
Get ISO country data
Fetch All Countries
GET /country/list?apikey={key}
Response
{
"status": "success",
"count": 249,
"data": [
{
"code": "US",
"name": "United States"
},
...
]
}
Offer Test API
Test campaign routing
Test Offer
GET /offer/test?apikey={key}&redirect_url={url}&country=US&user_agent=android
Parameters
redirect_url: Callback URL (required)country: ISO country code (required)user_agent: Platform identifier (required)app_url: Application URL (optional)