Access our vocabulary and transformation endpoints. These endpoints allow you to query subsets of our vocabulary and process data through our transformation service.
This endpoint allows you to query our vocabulary to return specific sets of classes and properties.
Transform data through our vocabulary and transformation service to and from any of our supported partners.
curl -G https://marketplacecompany.com/api/knowledge-graph/vocabulary \
-H "Authorization: Bearer {token}"{
"type": "array"
}curl -X POST https://marketplacecompany.com/api/knowledge-graph/transform \
-H "Authorization: Bearer {token}"{
"type": "object",
"properties": {
"data": {
"description": "The transformed output data"
},
"metadata": {
"type": "object",
"properties": {},
"additionalProperties": false
}
},
"required": [
"metadata"
],
"additionalProperties": false
}