GGKP Knowledge Brokerage API
Home
What is GGKP?
Home
What is GGKP?
  1. Taxonomy
  • Overview
  • Use Cases
  • Security
  • FAQ
  • Taxonomy
    • Retrieve Master Taxonomy
      GET
    • Retrieve Taxonomy by Term ID
      GET
    • Retrieve Domain-Specific Taxonomy
      GET
  • Search
    • Federated Search
      POST
    • Semantic Search
      POST
    • List Connected Sources
      GET
    • Register New Source
      POST
    • Upload Knowledge Products
      POST
    • List Products by Source
      GET
    • Delete Products
      DELETE
  • Classifier
    • Classify PDF Document
      POST
    • Generate Body and Summary
      POST
  • Bots
    • Generic Bot
      POST
  1. Taxonomy

Retrieve Taxonomy by Term ID

GET
https://api.ggkp.org/taxonomy-manage/view-termbyid
Taxonomy
Retrieves a specific taxonomy term by its unique identifier.

Request

Authorization
API Key
Add parameter in header
api-key
Example:
api-key: ********************
or
Query Params

Header Params

Responses

🟢200
application/json
Successful response with term data
Body

🟠401
🟠404
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ggkp.org/taxonomy-manage/view-termbyid?term_id=123' \
--header 'api-key: <api-key>'
Response Response Example
{
    "status": "string",
    "data": {
        "id": "string",
        "name": "string",
        "parent_id": "string",
        "children": [
            {}
        ]
    }
}
Previous
Retrieve Master Taxonomy
Next
Retrieve Domain-Specific Taxonomy
Built with