Getting Started
This guide walks you through creating an account, generating an API key, and making your first API call.
Step 1: Create an Account
- Go to app.smplkit.com
- Sign up with Google, Microsoft, or email/password
- You'll land in the developer console with a default "Production" environment
Step 2: Create an API Key
- In the console sidebar, click API Keys
- Click + Create API Key
- Enter a name (e.g., "My Test Key")
- Select type API Key
- Click Create
- Copy the key value — it starts with
sk_live_and is your credential for all management API calls
Step 3: Make Your First API Call
List your services:
bash
curl -s https://app.smplkit.com/api/v1/services \
-H "Authorization: Bearer sk_live_your_key_here"Create a service:
bash
curl -s -X POST https://app.smplkit.com/api/v1/services \
-H "Content-Type: application/json" \
-H "Authorization: Bearer sk_live_your_key_here" \
-d '{
"data": {
"type": "services",
"attributes": {
"name": "My Service",
"key": "my_service"
}
}
}'Example response:
json
{
"data": {
"id": "951b6616-8207-4352-bf63-438bb71dc917",
"type": "services",
"attributes": {
"name": "My Service",
"key": "my_service",
"created_at": "2026-03-17T22:19:12.473008Z",
"updated_at": "2026-03-17T22:19:12.473008Z"
}
}
}Step 4: Explore the API Reference
- Browse all available endpoints in the API Reference
- Use the built-in "Try It" client to test API calls directly from the docs (enter your API key in the Authorize dialog)

