LLM-readable documentation index
ApiV3GeneratedBuckets

Create a Bucket

Hand off to an LLM
POST
/v3/buckets
x-api-key<token>

Authenticate using API Key in request header

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://api.bem.ai/v3/buckets" \  -H "Content-Type: application/json" \  -d '{    "name": "invoices",    "description": "Knowledge graph for invoice documents"  }'
{
  "bucketID": "string",
  "name": "string",
  "description": "string",
  "isDefault": true,
  "createdAt": "2019-08-24T14:15:22Z",
  "updatedAt": "2019-08-24T14:15:22Z"
}