API Reference
Grovs REST API for programmatic link generation and management
The Grovs REST API lets you create and manage links from your server-side applications. Use it to generate dynamic links programmatically and retrieve link metadata without the dashboard.
Base URL
https://sdk.sqd.link/api/v1/sdk
Authentication
All requests require two headers for authentication:
PROJECT-KEYstringrequiredYour SDK project key. Found in Dashboard → Developer → API Key.
ENVIRONMENTstringrequiredTarget environment. Use production or development.
Endpoints
POST
/generate_linkCreate a new link with custom metadata, platform-specific redirects, and tracking parameters.
GET
/link/:link_pathRetrieve the full details of an existing link using its unique path.
Quick Start
Generate your first link with a single cURL command:
Bash
curl -X POST https://sdk.sqd.link/api/v1/sdk/generate_link \
-H "PROJECT-KEY: YOUR_PROJECT_KEY" \
-H "ENVIRONMENT: production" \
-H "Content-Type: application/json" \
-d '{"title": "My First Link", "data": "{\"screen\": \"home\"}"}'Postman Collection
Import the Grovs Postman Collection to explore and test all endpoints interactively.