API Explorer

Test and explore the Chars.gg API endpoints

Get character HoM details

Endpoint Details

Get character HoM details

GET /v1/tools/gw/hom

Query Parameters

The name of the character to get the HOM details for

Headers

Response Examples

200 - The HOM details for the specified character
Schema: {
  "type": "object",
  "properties": {
    "devotion": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "The total number of devotion points"
        },
        "possible": {
          "type": "number",
          "description": "The possible number of devotion points"
        }
      },
      "required": [
        "total",
        "possible"
      ],
      "description": "The devotion details"
    },
    "fellowship": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "The total number of fellowship points"
        },
        "possible": {
          "type": "number",
          "description": "The possible number of fellowship points"
        }
      },
      "required": [
        "total",
        "possible"
      ],
      "description": "The fellowship details"
    },
    "honor": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "The total number of honor points"
        },
        "possible": {
          "type": "number",
          "description": "The possible number of honor points"
        }
      },
      "required": [
        "total",
        "possible"
      ],
      "description": "The honor details"
    },
    "resilience": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "The total number of resilience points"
        },
        "possible": {
          "type": "number",
          "description": "The possible number of resilience points"
        }
      },
      "required": [
        "total",
        "possible"
      ],
      "description": "The resilience details"
    },
    "valor": {
      "type": "object",
      "properties": {
        "total": {
          "type": "number",
          "description": "The total number of valor points"
        },
        "possible": {
          "type": "number",
          "description": "The possible number of valor points"
        }
      },
      "required": [
        "total",
        "possible"
      ],
      "description": "The valor details"
    }
  },
  "required": [
    "devotion",
    "fellowship",
    "honor",
    "resilience",
    "valor"
  ],
  "description": "Get the HOM details for a character"
}
400 - Unknown error
Schema: {
  "type": "object",
  "properties": {
    "message": {
      "type": "string",
      "description": "The error that happened while checking the HOM details"
    }
  },
  "required": [
    "message"
  ],
  "description": "Error data"
}