Skip to main content
GET
/
agent
/
skills
/
{skillId}
Get Skill Details
curl --request GET \
  --url http://localhost:3773/agent/skills/{skillId}
{
  "id": "question-answering-v1",
  "name": "Question Answering",
  "description": "Answer questions based on context",
  "version": "1.0.0",
  "inputSchema": {
    "type": "object",
    "properties": {
      "question": {
        "type": "string",
        "description": "The question to answer"
      }
    },
    "required": [
      "question"
    ]
  },
  "outputSchema": {
    "type": "object",
    "properties": {
      "answer": {
        "type": "string",
        "description": "The answer to the question"
      }
    }
  }
}

Path Parameters

skillId
string
required

The skill identifier

Response

Skill details

id
string
required
name
string
required
version
string
required
description
string
inputSchema
object

JSON Schema for input

outputSchema
object

JSON Schema for output