action wikimedia_get_transform_list_pair_from_to { label: "Lists the tools available for a language pair" description: "Fetches the list of tools that are available for the given pair of languages.\n\nStability: [unstable](https://www.mediawiki.org/wiki/API_versioning#Unstable)\n" provider: wikimedia method: GET path: "/transform/list/pair/{from}/{to}/" encoding: json input: { type: "object" properties: { from: { type: "string" } to: { type: "string" } } required: ["from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }