API Settings
Manage your project API keys and explore endpoints
Project Configuration
Safe to expose
Quick start
🟨 JavaScript
import { createClient } from '@extrabase/js'
const client = createClient('https://••••••••••••••••••••••••', '••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••')🐍 Python
from extrabase import create_client
client = create_client('https://••••••••••••••••••••••••', '••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••')🌐 cURL
curl 'https://••••••••••••••••••••••••/rest/v1/' -H "apikey: ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••" -H "Authorization: Bearer ••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••••"
REST Endpoints
Open API Docs| Method | Endpoint | Description | Copy |
|---|---|---|---|
| GET | https://••••••••••••••••••••••••/rest/v1/users | Select all users | |
| POST | https://••••••••••••••••••••••••/rest/v1/users | Insert a user | |
| PATCH | https://••••••••••••••••••••••••/rest/v1/users?id=eq.1 | Update a user | |
| DELETE | https://••••••••••••••••••••••••/rest/v1/users?id=eq.1 | Delete a user |