get_api_endpoint_schema
Retrieve the schema for an API endpoint in Hive Intelligence to structure and validate API calls using the call_api_endpoint tool.
Instructions
Get the schema for an endpoint in the HIVE API. You can use the schema returned by this tool to call an endpoint with the call_api_endpoint tool.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| endpoint | Yes | The name of the endpoint to get the schema for. | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "endpoint": {
      "description": "The name of the endpoint to get the schema for.",
      "type": "string"
    }
  },
  "required": [
    "endpoint"
  ],
  "type": "object"
}