Sign in

Create vector bucket

documented

Create a vector bucket for embeddings.

POST /storage/v1/vector/bucketsStorageno 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_ref}}.supabase.co/storage/v1/vector/buckets" \\
  -X POST \\
  -H "Authorization: Bearer {{SUPABASE_API_KEY}}" \\
  -H "Content-Type: application/json" \\
  -H "Accept: application/json" \\
  -d '{"name": "{{$bucket_name}}"}'