> ## 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 Revenue Model

# OpenAPI definition

```json
{
  "openapi": "3.0.1",
  "info": {
    "title": "Monetization",
    "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": {
    "/revenue_models/{id}": {
      "get": {
        "summary": "View Revenue Model",
        "description": "",
        "tags": [
          "Revenue Models"
        ],
        "operationId": "getRevenueModel",
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "required": true,
            "schema": {
              "type": "string"
            },
            "description": "ID of the revenue model"
          }
        ],
        "responses": {
          "200": {
            "description": "",
            "content": {
              "application/json": {
                "schema": {
                  "title": "RevenueModelResponse",
                  "type": "object",
                  "properties": {
                    "response": {
                      "title": "RevenueModel",
                      "type": "object",
                      "properties": {
                        "_id": {
                          "type": "string"
                        },
                        "created_at": {
                          "type": "string"
                        },
                        "image_content_type": {
                          "type": "string"
                        },
                        "image_file_name": {
                          "type": "string"
                        },
                        "image_file_size": {
                          "type": "string"
                        },
                        "image_fingerprint": {
                          "type": "string"
                        },
                        "image_updated_at": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "updated_at": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          },
          "404": {
            "description": "Revenue Model not found",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/paths/~1plans~1%7Bid%7D/get/responses/404/content/application~1json/schema"
                }
              }
            }
          }
        }
      }
    }
  }
}
```