URL Toolkit

Utilities

URL shortener & metadata extraction. Free tier with 100 requests per day — no credit card required.

4
Endpoints
100
Free Req/Day
0
Cost to Start
<200ms
Avg Latency
Get Free API Key Interactive Docs

Code Examples

cURL

curl -s -X POST "https://api.commandsector.in/api/url/shorten?api_key=demo-try-free-2026" -H "Content-Type: application/json"

Python

import requests
resp = requests.post("https://api.commandsector.in/api/url/metadata",
    json={"url": "https://example.com"},
    params={"api_key": "YOUR_KEY"})
print(resp.json())  # {"title": "Example", "description": "...", ...}

JavaScript

const resp = await fetch("https://api.commandsector.in/api/url/health");
const data = await resp.json();
console.log(data);

Use Cases

Link previewssocial sharingSEO auditingcontent curationURL shortening

Getting Started

  1. Get your free API key at /signup (instant, no credit card)
  2. Pass it as X-API-Key header or ?api_key=YOUR_KEY query parameter
  3. Make requests to /api/url/ endpoints
  4. Check interactive Swagger docs for all 4 endpoints

Pricing

Free100 req/day$0/mo
Pro10,000 req/day$9.99/mo
EnterpriseUnlimited$49.99/mo

Frequently Asked Questions

Does it extract metadata from URLs?
Yes. The API extracts title, description, OG tags, images, and favicon from any URL.
Can I shorten URLs?
Yes. The shorten endpoint creates compact redirect links.
Is there URL validation?
Yes. The API validates URLs and checks if they are reachable.

OpenAPI Specification

Machine-readable spec: /api/url/openapi.json

Also available on: API Catalog · MCP Server · All Specs

Get Free API Key →