action wordnik_get_audio { label: "Fetches audio metadata for a word." description: "The metadata includes a time-expiring fileUrl which allows reading the audio file directly from the API. Currently only audio pronunciations from the American Heritage Dictionary in mp3 format are supported." provider: wordnik method: GET path: "/word.json/{word}/audio" encoding: json input: { type: "object" properties: { limit: { type: "integer" format: "int32" } useCanonical: { type: "string" enum: ["false", "true"] } word: { type: "string" } } required: ["word"] additionalProperties: false } output: { type: "object" additionalProperties: true } }