SEDI API Docs - Build powerful integrations
Basics

Getting Started

Create an account

Sign up at sedi.dev with your email address. No credit card required for the Hobby plan.

Get your API key

Once logged in, navigate to Dashboard > API Keys and create a new key. Store it securely - you will not be able to see it again after creation.

Make your first request

Verify your key is working:

curl https://api.sedi.dev/v1/me \
  -H "Authorization: Bearer sk_live_abc123def456"

A successful response looks like:

{
  "id": "user_abc123",
  "email": "alice@example.com",
  "name": "Alice Johnson",
  "plan": "hobby"
}

Using the JS SDK

import { SEDI } from 'sedi-sdk';

const client = new SEDI(process.env.SEDI_API_KEY);

const me = await client.me.get();
console.log(me.data);

Next steps