Learn
Help
Socials
© 2025 make.com
Last updated 1 day ago
Gets the API tokens of the currently authenticated user.
Successful response
const response = await fetch('https://eu1.make.com/api/v2/users/me/api-tokens', { method: 'GET', headers: {}, }); const data = await response.json();
{ "apiTokens": [ { "token": "text", "scope": [ "https://example.com" ], "created": "2025-01-11T06:24:43.376Z", "label": "text" } ] }