API Reference

The n10 REST API lets you create and manage links programmatically. Authenticate with an API key (Enterprise plan) using the Authorization header.

Authentication

Authorization: Bearer n10_sk_xxxxxxxxxxxxx

Endpoints

GET/api/v1/links
List your links. Optional ?limit= (max 100).
POST/api/v1/links
Create a link.
curl -X POST https://n10.in/api/v1/links \
  -H "Authorization: Bearer n10_sk_xxx" \
  -H "Content-Type: application/json" \
  -d '{ "url": "https://example.com", "slug": "launch", "domain": "n10.in" }'
GET/api/v1/links/:id
Retrieve a single link.
DELETE/api/v1/links/:id
Delete a link.

Go to dashboard →