action wikimedia_get_media_math_render_format_hash { label: "Get rendered formula in the given format." description: "Given a request hash, renders a TeX formula into its mathematic\nrepresentation in the given format. When a request is issued to the\n`/media/math/check/{format}` POST endpoint, the response contains the\n`x-resource-location` header denoting the hash ID of the POST data. Once\nobtained, this endpoint has to be used to obtain the actual render.\n\nStability: [stable](https://www.mediawiki.org/wiki/API_versioning#Stable).\n" provider: wikimedia method: GET path: "/media/math/render/{format}/{hash}" encoding: json input: { type: "object" properties: { format: { type: "string" } hash: { type: "string" } } required: ["format", "hash"] additionalProperties: false } output: { type: "object" additionalProperties: true } }