Skip to content

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

  1. Go to app.smplkit.com
  2. Sign up with Google, Microsoft, or email/password
  3. You'll land in the developer console with a default "Production" environment

Step 2: Create an API Key

  1. In the console sidebar, click API Keys
  2. Click + Create API Key
  3. Enter a name (e.g., "My Test Key")
  4. Select type API Key
  5. Click Create
  6. 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)