{
  "openapi": "3.0.3",
  "info": {
    "title": "TurkoMedya Public Information API",
    "version": "2026-09-21",
    "description": "Existing public, read-only corporate and service information endpoint. No purchasing, booking, account access or MCP operations."
  },
  "servers": [
    {
      "url": "https://www.turkomedya.com.tr"
    }
  ],
  "paths": {
    "/api/site-info": {
      "get": {
        "operationId": "getTurkoMedyaSiteInfo",
        "summary": "Read TurkoMedya corporate and service information",
        "responses": {
          "200": {
            "description": "Public information in Turkish",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "required": [
                    "name",
                    "services",
                    "contact"
                  ],
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "legal_name": {
                      "type": "string"
                    },
                    "services": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "url": {
                            "type": "string",
                            "format": "uri"
                          }
                        }
                      }
                    },
                    "software_products": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    },
                    "contact": {
                      "type": "object",
                      "properties": {
                        "email": {
                          "type": "string"
                        },
                        "phone": {
                          "type": "string"
                        },
                        "url": {
                          "type": "string",
                          "format": "uri"
                        }
                      }
                    },
                    "updated_at": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        }
      }
    }
  }
}
