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}"
export type Response = unknown[];
curl -X POST https://marketplacecompany.com/api/knowledge-graph/transform \
-H "Authorization: Bearer {token}"
export interface Response {
/**
* The transformed output data
*/
data?: {
[k: string]: unknown;
};
metadata: {};
}