Everything you need to integrate Meym into your product. REST API, webhooks, SDKs, and step-by-step guides.
Complete reference for all API endpoints. Create, read, update, and delete links, domains, and workspaces.
Official SDKs for the most popular languages and frameworks. Get started in minutes.
Subscribe to real-time events and build automations that react instantly to clicks and link changes.
Step-by-step guides for common integration patterns, from basic link creation to advanced AI routing.
# Quick Start
## 1. Get your API key
Sign up at meym.me and navigate to Settings → API Keys.
## 2. Create your first link
```bash
curl -X POST https://api.meym.me/v1/links \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"destination": "https://example.com",
"domain": "meym.me",
"slug": "my-first-link"
}'
```
## 3. Response
```json
{
"id": "lnk_abc123",
"shortUrl": "https://meym.me/my-first-link",
"destination": "https://example.com",
"clicks": 0,
"createdAt": "2025-01-01T00:00:00Z"
}
```