List Databases
Datum
Get database information
Query and manage Datum databases stored in Jelou.
GET
List Databases
Documentation Index
Fetch the complete documentation index at: https://docs.jelou.ai/llms.txt
Use this file to discover all available pages before exploring further.
The schema structure is key to validating data before inserting or querying records from your flows and workflows.
Description
The Datum API allows you to query the databases available in Jelou and access their structure and metadata.It is useful for listing schemas, validating fields, and preparing read or write operations from your flows.
Get databases
Endpoint
Query parameters
Database structure
Each database in Datum is composed of the following attributes:| Property | Type | Description |
|---|---|---|
| id | string | Unique database identifier. |
| name | string | Database name. |
| description | string | Functional description of the database. |
| schema | object | Schema that defines the fields and data types. |
| state | boolean | Database state. true = active, false = deleted. |
| createdAt | date | Creation date. |
| updatedAt | date | Date of last update. |
| columns | array | Columns visible in Datum, with name, description, and order. |
| metadata | array | Additional metadata associated with the database. |
Schema structure
Defines the shape and validations of stored data.| Property | Type | Description |
|---|---|---|
| type | string | Schema type (usually object). |
| required | array | Required fields when inserting a record. |
| properties | object | Each property represents a field and its data type. |
Get information about a specific database
Endpoint
Path parameters
Unique database identifier.
Responses
- 200 – OK Database found.
- 401 – Unauthorized Unauthorized.
- 404 – Not Found Database not found.
- 500 – Internal Server Error Internal server error.