Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Gets the list of languages and their language codes.
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" } ] }