Owostack

API Keys

Manage API keys for SDK authentication

API Keys

API keys authenticate your application with the Owostack API. Each key is scoped to a specific organization.

Creating an API Key

  1. Go to API Keys in the sidebar
  2. Click Create API Key
  3. Enter a name for the key (e.g., "Production Server")
  4. Copy the key immediately - it's only shown once!

Security: API keys are shown only once at creation. Store them securely. If lost, create a new key and revoke the old one.

Key Format

Owostack API keys follow this format:

owo_sk_xxxxxxxxxxxxxxxxxxxx
  • owo_ - Owostack prefix
  • sk_ - Secret key indicator
  • xxxx... - Unique identifier

Using API Keys

In the SDK

import { Owostack } from "owostack";

const owo = new Owostack({
  secretKey: process.env.OWOSTACK_SECRET_KEY,
});

Direct API Calls

curl https://api.owostack.com/v1/check \
  -H "Authorization: Bearer owo_sk_your_key_here" \
  -H "Content-Type: application/json" \
  -d '{"customer": "user_123", "feature": "premium"}'

On this page

AI Chat

Owostack docs assistant

Start a new chat below.