## Get all converted formats supported `client.ai.toMarkdown.supported(ToMarkdownSupportedParamsparams, RequestOptionsoptions?): SinglePage` **get** `/accounts/{account_id}/ai/tomarkdown/supported` Lists all file formats supported for conversion to Markdown. ### Parameters - `params: ToMarkdownSupportedParams` - `account_id: string` ### Returns - `ToMarkdownSupportedResponse` - `extension: string` - `mimeType: string` ### Example ```node import Cloudflare from 'cloudflare'; const client = new Cloudflare({ apiToken: process.env['CLOUDFLARE_API_TOKEN'], // This is the default and can be omitted }); // Automatically fetches more pages as needed. for await (const toMarkdownSupportedResponse of client.ai.toMarkdown.supported({ account_id: '023e105f4ecef8ad9ca31a8372d0c353', })) { console.log(toMarkdownSupportedResponse.extension); } ``` #### Response ```json { "result": [ { "extension": "extension", "mimeType": "mimeType" } ], "success": true } ```