Sign in

Insert row

documented

Insert a new row into the specified table.

POST /rest/v1/{table}Tablesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://{{project_subdomain}}.supabase.co/rest/v1/{{table}}" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "apikey: {{SUPABASE_API_KEY}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Prefer: return=representation" \
  -d '{"title": "{{$title}}", "description": "{{$description}}"}'
Insert row · Supabase · OpenIntegrations