cURL
curl --request POST \ --url https://apx.didit.me/auth/v2/programmatic/login/ \ --header 'Content-Type: application/json' \ --data ' { "email": "jsmith@example.com", "password": "<string>" } '
{ "access_token": "<string>", "refresh_token": "<string>", "expires_in": 123, "message": "<string>" }
Login with email and password for API accounts. Returns access tokens directly — no 2FA required. Protected by brute force prevention.
Login successful.