v1

latestOpenAPI 3.0.02026-08-06132933.0 KB
Data Sources

List datasets

Retrieves all datasets that belong to the specified data source (dataSourceId).

get/v1/data-sources/{dataSourceId}/datasets

Path parameters

dataSourceIdinteger required

Unique identifier for the data source.

Example:4754489

Response

Successful response containing a list of all datasets associated with the given data source.
If the data source has no datasets, the response will return an empty array.

requestIdstring

Unique identifier for the request.

statusstring

Indicates the status of the request.

Example response

{
  "requestId": "b0eac937-c25c-47a5-bb7e-552f6b860458",
  "status": "success",
  "datasets": [
    {
      "id": "4e1219d8-7fa8-44b7-96c6-a8f2a9cfb0bf",
      "title": "Transactions",
      "created": "2025-10-01T12:00:00.000000Z"
    }
  ]
}