← Tools Reference

Databar.ai

Databar.ai integration (Data, Marketing). Imported from open-connector.

API key11 toolshttps://api.databar.ai
GET
databar_ai_get_user_info
Get the current Databar account information for the API key.

/v1/user/me

GET
databar_ai_list_tables
List Databar tables in the current workspace.

/v1/table/

POST
databar_ai_create_table
Create a Databar table with optional columns and empty rows.

/v1/table/create

3 parameters
ParamTypeRequiredDescription
namestringoptionalThe table name.
columnsarrayoptionalThe initial human-readable column names.
rowsintegeroptionalThe number of empty rows Databar should create.
GET
databar_ai_get_table_columns
List columns for a Databar table.

/v1/table/{table_uuid}/columns

1 parameter
ParamTypeRequiredDescription
table_uuidstringrequiredThe UUID of the Databar table.
GET
databar_ai_get_table_rows
Get Databar table rows with pagination and optional column filters.

/v1/table/{table_uuid}/rows

4 parameters
ParamTypeRequiredDescription
table_uuidstringrequiredThe UUID of the Databar table.
per_pageintegeroptionalThe number of rows per page.
pageintegeroptionalThe page number to retrieve.
filterobjectoptionalColumn filters keyed by human-readable column name.
POST
databar_ai_insert_rows
Insert up to 50 rows into a Databar table using human-readable column names.

/v1/table/{table_uuid}/rows

4 parameters
ParamTypeRequiredDescription
table_uuidstringrequiredThe UUID of the Databar table.
rowsarrayrequiredThe rows to insert into Databar.
optionsobjectoptionalThe object returned by Databar.
return_rowsbooleanoptionalWhether Databar should return full row_data for each inserted row.
GET
databar_ai_list_enrichments
List Databar enrichments with optional search and pagination.

/v1/enrichments/

5 parameters
ParamTypeRequiredDescription
qstringoptionalThe search query for Databar enrichments.
pageintegeroptionalThe page number to retrieve.
limitintegeroptionalThe number of items to return.
authorized_onlybooleanoptionalWhether to hide BYOK enrichments that are not connected.
categorystringoptionalThe enrichment category name to filter by.
GET
databar_ai_get_enrichment
Get detailed Databar enrichment metadata by ID.

/v1/enrichments/{enrichment_id}

1 parameter
ParamTypeRequiredDescription
enrichment_idintegerrequiredThe numeric Databar enrichment ID.
POST
databar_ai_run_enrichment
Submit a Databar enrichment task and return the task ID for later status polling.

/v1/enrichments/{enrichment_id}/run

3 parameters
ParamTypeRequiredDescription
enrichment_idintegerrequiredThe numeric Databar enrichment ID.
paramsobjectrequiredThe enrichment parameters keyed by Databar parameter name.
paginationobjectoptionalThe object returned by Databar.
GET
databar_ai_get_task_status
Get the status and result data for a Databar enrichment or waterfall task.

/v1/tasks/{task_id}

1 parameter
ParamTypeRequiredDescription
task_idstringrequiredThe Databar task identifier.
POST
databar_ai_run_waterfall
Submit a Databar waterfall task and return the task ID for later status polling.

/v1/waterfalls/{waterfall_identifier}/run

4 parameters
ParamTypeRequiredDescription
waterfall_identifierstringrequiredThe Databar waterfall identifier.
paramsobjectrequiredThe waterfall parameters keyed by Databar parameter name.
enrichmentsarrayrequiredThe enrichment IDs.
email_verifierintegeroptionalThe email verifier enrichment ID.