Skip to main content

Welcome to taap.it API

The taap.it API provides powerful programmatic access to our link management and analytics platform. Create, manage, and track shortened links with enterprise-grade features and detailed analytics.

Key Features

  • Real-time click tracking and unique visitor counts
  • Geographic and device analytics
  • Browser and referrer statistics
  • Exportable reports and data visualization
  • Password protection and expiration settings
  • UTM parameter tracking and templates
  • QR code generation with custom branding
  • Geographic restrictions and access control
  • Branded short links with your domain
  • DNS verification and setup assistance
  • SSL certificate management
  • Domain performance monitoring

Quick Example

curl -X POST 'https://api.taap.it/v1/links' \
  -H 'Authorization: Bearer taapit_your_api_key_here' \
  -H 'Content-Type: application/json' \
  -d '{
    "original_url": "https://example.com/long-url",
    "custom_code": "my-link"
  }'
{
  "id": "link_987654321",
  "original_url": "https://example.com/long-url",
  "short_url": "https://taap.it/my-link",
  "code": "my-link",
  "created_at": "2024-01-15T10:30:00Z",
  "click_count": 0,
  "is_active": true
}

Base URL & Authentication

All API requests should be made to:
https://api.taap.it/v1
All requests require authentication using API keys. Include your API key in the Authorization header: Bearer taapit_your_api_key_here

Ready to get started?

Follow our quickstart guide to make your first API call and start building with taap.it.