Skip to content

Quickstart

This quickstart walks you through creating an account, generating an API key, and making your first request. Replace the placeholder URLs and resource names with your own.

You need:

  • An account on [your product]. Sign up if you don’t have one.
  • A terminal with curl, or a project set up with the language SDK of your choice.
  1. Create an API key.

    Sign in, open Settings → API keys, and click Create key. Copy it somewhere safe — you’ll only see it once.

  2. Export the key as an environment variable.

    Terminal window
    export API_KEY="sk_live_replace_me"
  3. Send your first request.

    Terminal window
    curl https://api.example.com/v1/widgets \
    -H "Authorization: Bearer $API_KEY" \
    -H "Content-Type: application/json" \
    -d '{"name": "My first widget"}'
  4. Inspect the response.

    Response
    {
    "id": "wdg_01H8Z9XJ7M3K4P5Q6R7S8T9V0W",
    "name": "My first widget",
    "created_at": "2026-05-10T12:00:00Z"
    }

Maintained by EkLine