LLM-readable documentation index

List dataset examples

Hand off to an LLM

List a dataset's rows (examples).

GET
/v3/datasets/{dataset_api_id}/rows
x-api-key<token>

Authenticate using API Key in request header

In: header

Path Parameters

dataset_api_id*string

Unique identifier of the dataset.

Response Body

application/json

curl -X GET "https://api.bem.ai/v3/datasets/string/rows"
{
  "rows": [
    {
      "key": "string",
      "columns": {},
      "source": {
        "transformationID": "string",
        "eventID": "string",
        "referenceID": "string",
        "functionName": "string",
        "functionVersionNum": 0,
        "functionType": "string"
      }
    }
  ],
  "totalCount": 0,
  "error": "string"
}

See also