Free URL Shortener with Advanced Analytics & Custom Links

Unlock API Access

Get instant access to bitx.at's powerful QR code and URL shortening API. Request your API key via email from your official brand domain (e.g., @mycomapny.com).
Email us at bitx.at@gmail.com to unlock seamless integration and supercharge your applications!

curl --request POST \
--url "https://bitx.at/api/" \
--header 'accept: application/json' \
--header 'content-type: application/json' \
--data '{
    "username": "accountname",
    "password": "password",
    "url": "https://example.com/long-url"
}'
const axios = require('axios');

await axios.post('https://bitx.at/api/', {
  username: 'accountname',
  password: 'password',
  url: 'https://example.com/long-url'
})
$client = new \GuzzleHttp\Client();
$response = $client->post('https://bitx.at/api/', [
    'json' => [
        'username' => 'accountname',
        'password' => 'password',
        'url' => 'https://example.com/long-url'
    ]
]);
require 'httparty'

response = HTTParty.post('https://bitx.at/api/',
  body: {
    username: 'accountname',
    password: 'password',
    url: 'https://example.com/long-url'
  }.to_json,
  headers: {
    'Content-Type' => 'application/json'
  }
)
import requests

response = requests.post(
    "https://bitx.at/api/",
    json={
        "username": "accountname",
        "password": "password",
        "url": "https://example.com/long-url"
    }
)