Discover Assets
Use this API when you want a broad list of assets available in your environment. This is often the first step when exploring a new data source. For example, after connecting a Snowflake assembly, you can list all assets that were onboarded and filter them to show only “profiled” or “watched” assets.
⚠️ All endpoints require authentication. See Authentication & Headers.
Endpoint
GET /catalog-server/api/assets/discover
Query Parameters
Name | Type | Required | Description | Example |
---|---|---|---|---|
page | int | No | Page number (for pagination) | 1 |
size | int | No | Results per page | 50 |
parents | string | No | If true, include parent hierarchy | true |
profiled_assets | string | No | If true, only return profiled assets | true |
watchers | string | No | If true, only return watched assets | false |
asset_type_ids | string | No | Comma-separated asset type IDs | 1,2 |
Sample Request
curl -X GET "https://demo.acceldata.io/catalog-server/api/assets/discover?page=1&size=50&profiled_assets=true"
Response Schema
See Asset Schema.
Was this page helpful?