Catalog
Last updated
Was this helpful?
Last updated
Was this helpful?
This section provides an overview of all available APIs that adhere to the OpenAPI specification. All APIs are loaded from the OpenAPI specification file: . Please note that the API base-paths may differ depending on the connector, the specific API base-path can be seen in the UI dashboard.
Fetch a connector's data offers
curl -L \
--url 'https://my-connector/api/management/wrapper/ui/pages/catalog-page/data-offers'
[
{
"endpoint": "text",
"participantId": "text",
"asset": {
"dataSourceAvailability": "LIVE",
"assetId": "text",
"connectorEndpoint": "text",
"participantId": "text",
"title": "text",
"creatorOrganizationName": "text",
"onRequestContactEmail": "contact@my-org.com",
"onRequestContactEmailSubject": "Department XYZ Data Offer Request - My Product, My API",
"language": "text",
"description": "text",
"descriptionShortText": "text",
"isOwnConnector": true,
"publisherHomepage": "text",
"licenseUrl": "text",
"version": "text",
"keywords": [
"text"
],
"mediaType": "text",
"landingPageUrl": "text",
"httpDatasourceHintsProxyMethod": true,
"httpDatasourceHintsProxyPath": true,
"httpDatasourceHintsProxyQueryParams": true,
"httpDatasourceHintsProxyBody": true,
"dataCategory": "text",
"dataSubcategory": "text",
"dataModel": "text",
"geoReferenceMethod": "text",
"transportMode": "text",
"sovereignLegalName": "text",
"geoLocation": "text",
"nutsLocations": [
"text"
],
"dataSampleUrls": [
"text"
],
"referenceFileUrls": [
"text"
],
"referenceFilesDescription": "text",
"conditionsForUse": "text",
"dataUpdateFrequency": "text",
"temporalCoverageFrom": "2025-04-06",
"temporalCoverageToInclusive": "2025-04-06",
"assetJsonLd": "text",
"customJsonAsString": "text",
"customJsonLdAsString": "text",
"privateCustomJsonAsString": "text",
"privateCustomJsonLdAsString": "text"
},
"contractOffers": [
{
"contractOfferId": "text",
"policy": {
"policyJsonLd": "text",
"expression": {
"type": "EMPTY",
"expressions": "[Circular Reference]",
"constraint": {
"left": "text",
"operator": "EQ",
"right": {
"type": "STRING",
"value": "text",
"valueList": [
"text"
]
}
}
},
"errors": [
"text"
]
}
}
]
}
]
default response
Fetch a connector's data offers
Catalog query parameters
Target EDC DSP endpoint URL. Can contain a queryParam 'participantId', which is provided by default in the Connector Endpoint in the EDC UI.
Target EDC Participant ID. It is required if the connector endpoint does not contain the queryParam 'participantId'.
Limit the number of results
Offset for returned results, e.g. start at result 2
Filter expressions for catalog filtering
curl -L \
--request POST \
--url 'https://my-connector/api/management/wrapper/use-case-api/catalog' \
--header 'Content-Type: application/json' \
--data '{
"connectorEndpoint": "text",
"participantId": "text",
"limit": 1,
"offset": 1,
"filterExpressions": [
{
"operandLeft": "https://w3id.org/edc/v0.0.1/ns/assetId",
"operator": "LIKE",
"operandRight": {
"type": "VALUE",
"value": "text",
"valueList": [
"text"
]
}
}
]
}'
[
{
"endpoint": "text",
"participantId": "text",
"asset": {
"dataSourceAvailability": "LIVE",
"assetId": "text",
"connectorEndpoint": "text",
"participantId": "text",
"title": "text",
"creatorOrganizationName": "text",
"onRequestContactEmail": "contact@my-org.com",
"onRequestContactEmailSubject": "Department XYZ Data Offer Request - My Product, My API",
"language": "text",
"description": "text",
"descriptionShortText": "text",
"isOwnConnector": true,
"publisherHomepage": "text",
"licenseUrl": "text",
"version": "text",
"keywords": [
"text"
],
"mediaType": "text",
"landingPageUrl": "text",
"httpDatasourceHintsProxyMethod": true,
"httpDatasourceHintsProxyPath": true,
"httpDatasourceHintsProxyQueryParams": true,
"httpDatasourceHintsProxyBody": true,
"dataCategory": "text",
"dataSubcategory": "text",
"dataModel": "text",
"geoReferenceMethod": "text",
"transportMode": "text",
"sovereignLegalName": "text",
"geoLocation": "text",
"nutsLocations": [
"text"
],
"dataSampleUrls": [
"text"
],
"referenceFileUrls": [
"text"
],
"referenceFilesDescription": "text",
"conditionsForUse": "text",
"dataUpdateFrequency": "text",
"temporalCoverageFrom": "2025-04-06",
"temporalCoverageToInclusive": "2025-04-06",
"assetJsonLd": "text",
"customJsonAsString": "text",
"customJsonLdAsString": "text",
"privateCustomJsonAsString": "text",
"privateCustomJsonLdAsString": "text"
},
"contractOffers": [
{
"contractOfferId": "text",
"policy": {
"policyJsonLd": "text",
"expression": {
"type": "EMPTY",
"expressions": "[Circular Reference]",
"constraint": {
"left": "text",
"operator": "EQ",
"right": {
"type": "STRING",
"value": "text",
"valueList": [
"text"
]
}
}
},
"errors": [
"text"
]
}
}
]
}
]
default response