Skip to main content

Quick Start

Run your first API request:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.usenotra.com/v1/YOUR_ORGANIZATION_ID/posts/"
Replace YOUR_API_KEY with your API key and YOUR_ORGANIZATION_ID with your organization ID.

Creating an API Key

1

Open your workspace settings

Open your workspace dashboard, then click Settings in the sidebar.
2

Go to API Keys

Click on API Keys at the bottom of the sidebar.
3

Create a new key

Click Create API Key, give it a descriptive name (e.g., “Production Website”), and select the appropriate permissions. You can also set an expiration date.
4

Copy your key

Your API key will only be shown once. Copy it and store it securely.
API keys are powered by Unkey.
Keep API keys private. Even read-only keys can be abused and burn through your rate limits if exposed in client-side code. Use server-side requests whenever possible.

Authentication

Include your API key in the Authorization header using the Bearer scheme:
curl -H "Authorization: Bearer YOUR_API_KEY" \
  "https://api.usenotra.com/v1/YOUR_ORGANIZATION_ID/posts/"

Available Endpoints

Next Steps