Developer APIs

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
Get your API key from Developer Dashboard

Generated QR code will appear here

URL Shortener
Get your API key from Developer Dashboard
3-30 characters: letters, numbers, dash, underscore

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, eps
  • output: json (data URI) or img (raw)
  • type: text, link, email, phone, whatsapp, wifi, geo
  • size: 50-1000 pixels
  • margin: 0-50 pixels
  • foreground: 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)

Ready to Get Started?

Sign up for free and get your API key in minutes

Get Your API Key