API Explorer

Test and explore the Chars.gg API endpoints

Get skill by ID

Get a skill by its ID

Endpoint Details

Get skill by ID

GET /v1/tools/gw/skills/{skillId}

Path Parameters

Id of the skill to return

Query Parameters

Language of the skill name/description

Headers

Response Examples

200 - Skill found
Schema: {
  "$ref": "#/components/schemas/GetSkillByIdResponseDto"
}
400 - Invalid skill ID format
Schema: {
  "$ref": "#/components/schemas/ValidationErrorResponseDto"
}
404 - Skill not found
Schema: {
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "example": "Skill not found",
      "description": "Error message describing the reason for the failure"
    }
  },
  "required": [
    "message"
  ]
}