> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zype.com/llms.txt
> Use this file to discover all available pages before exploring further.

# View Device Category

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Platform",
    "version": "1.0.0",
    "description": ""
  },
  "servers": [
    {
      "url": "https://api.zype.com/"
    }
  ],
  "security": [
    {
      "api_key": []
    }
  ],
  "components": {
    "securitySchemes": {
      "api_key": {
        "type": "apiKey",
        "name": "api_key",
        "in": "query"
      }
    }
  },
  "paths": {
    "/device_categories/{id}": {
      "get": {
        "summary": "View Device Category",
        "description": "",
        "tags": [
          "Device Categories"
        ],
        "operationId": "getDeviceCategory",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of device category"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "DeviceCategoryResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "type": "object",
                      "title": "DeviceCategory",
                      "properties": {
                        "_id": {
                          "type": "string",
                          "description": "593030d54d740d0053000004"
                        },
                        "_keywords": {
                          "type": "array",
                          "items": {
                            "type": "string"
                          }
                        },
                        "created_at": {
                          "type": "string",
                          "description": "2014-09-29T15:23:47.302-04:00"
                        },
                        "image_content_type": {
                          "type": "string",
                          "description": "image/png"
                        },
                        "image_file_name": {
                          "type": "string",
                          "description": "desktop.png"
                        },
                        "image_file_size": {
                          "type": "string",
                          "description": "19347"
                        },
                        "image_fingerprint": {
                          "type": "string",
                          "description": "a661d27f5003bcf1523f75e3686f6b24"
                        },
                        "image_updated_at": {
                          "type": "string",
                          "description": "2014-09-29T15:23:47.099-04:00"
                        },
                        "name": {
                          "type": "string",
                          "description": "Web"
                        },
                        "updated_at": {
                          "type": "string",
                          "description": "2014-09-29T15:23:47.302-04:00"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Device Category not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1app/get/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```