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

Response

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