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 Master Taxonomy

GET
https://api.ggkp.org/taxonomy-manage/taxonomy
Taxonomy
Retrieves the complete master taxonomy with all terms and hierarchical relationships. The taxonomy includes Sectors, Themes, Regions, Actors, Knowledge types, and more.

Request

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

Responses

🟢200
application/json
Successful response with taxonomy data
Body

🟠401
🟠403
🔴500
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.ggkp.org/taxonomy-manage/taxonomy' \
--header 'api-key: <api-key>'
Response Response Example
{
    "status": "string",
    "data": {
        "Sectors": [
            {
                "id": "string",
                "name": "string",
                "parent_id": "string",
                "children": [
                    {}
                ]
            }
        ],
        "Themes": [
            {
                "id": "string",
                "name": "string",
                "parent_id": "string",
                "children": [
                    {}
                ]
            }
        ],
        "Regions": [
            {
                "id": "string",
                "name": "string",
                "parent_id": "string",
                "children": [
                    {}
                ]
            }
        ],
        "Actors": [
            {
                "id": "string",
                "name": "string",
                "parent_id": "string",
                "children": [
                    {}
                ]
            }
        ],
        "Knowledge": [
            {
                "id": "string",
                "name": "string",
                "parent_id": "string",
                "children": [
                    {}
                ]
            }
        ]
    }
}
Previous
FAQ
Next
Retrieve Taxonomy by Term ID
Built with