Required scopes:
user:read
Gets the API tokens of the currently authenticated user.
Last updated 7 days ago
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-22T00:09:54.751Z", "label": "text" } ] }