Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Gets the list of keys in your custom keychain. You can use the typeName query parameter to filter your keys based on their type. Run the API call to get a list of available key types.
typeName
Successful response
const response = await fetch('https://eu1.make.com/api/v2/keys?teamId=0', { method: 'GET', headers: {}, }); const data = await response.json();
{ "keys": [ { "id": 0, "name": "text", "typeName": "text", "teamId": 0, "packageName": "text", "theme": "text" } ] }