## Get all converted formats supported `client.AI.ToMarkdown.Supported(ctx, query) (*SinglePage[ToMarkdownSupportedResponse], error)` **get** `/accounts/{account_id}/ai/tomarkdown/supported` Lists all file formats supported for conversion to Markdown. ### Parameters - `query ToMarkdownSupportedParams` - `AccountID param.Field[string]` ### Returns - `type ToMarkdownSupportedResponse struct{…}` - `Extension string` - `MimeType string` ### Example ```go package main import ( "context" "fmt" "github.com/cloudflare/cloudflare-go" "github.com/cloudflare/cloudflare-go/ai" "github.com/cloudflare/cloudflare-go/option" ) func main() { client := cloudflare.NewClient( option.WithAPIToken("Sn3lZJTBX6kkg7OdcBUAxOO963GEIyGQqnFTOFYY"), ) page, err := client.AI.ToMarkdown.Supported(context.TODO(), ai.ToMarkdownSupportedParams{ AccountID: cloudflare.F("023e105f4ecef8ad9ca31a8372d0c353"), }) if err != nil { panic(err.Error()) } fmt.Printf("%+v\n", page) } ``` #### Response ```json { "result": [ { "extension": "extension", "mimeType": "mimeType" } ], "success": true } ```