Knowledge Graph Manager API
note
Read this page in wide view mode from here
KGM API (1.0.0)
Search across all sources
query Parameters
| term required | string <= 256 characters Example: term=knowledge graph Search term (maximum 256 characters, longer queries will be truncated) |
| offset | integer Default: 0 Number of results to skip for pagination |
| limit | integer <= 100 Default: 10 Maximum number of results to return (capped at 100, larger values will be automatically reduced) |
Responses
Response samples
- 200
- 400
- 500
Content type
application/json
{- "totalResults": 150,
- "offset": 0,
- "limit": 10,
- "hasNextPage": true
}Passthrough search to a specific source's native API
path Parameters
| sourceId required | string Example: source-1 Source identifier |
query Parameters
| term required | string <= 256 characters Example: term=knowledge graph Search term (maximum 256 characters, longer queries will be truncated) |
| offset | integer Default: 0 Number of results to skip for pagination |
| limit | integer <= 100 Default: 10 Maximum number of results to return (capped at 100, larger values will be automatically reduced) |
Responses
Response samples
- 200
- 400
- 500
Content type
application/json
{- "totalResults": 150,
- "offset": 0,
- "limit": 10,
- "hasNextPage": true
}Trigger scheduled ingestion job for a specific source
path Parameters
| sourceId required | string Example: source-1 Source identifier |
Responses
Response samples
- 400
- 404
- 500
Content type
application/json
{- "type": "ERROR_CODE",
- "title": "Invalid operation.",
- "status": 400,
- "detail": "string",
- "instance": "/v1/graph/sparql",
- "details": {
- "line": 12,
- "column": 5
}
}