Required scopes: No scopes required.
Gets the list of languages and their language codes.
Last updated 7 days ago
Successful response
const response = await fetch('https://eu1.make.com/api/v2/enums/languages', { method: 'GET', headers: {}, }); const data = await response.json();
{ "languages": [ { "code": "text", "name": "text" } ] }