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>" } '
200
Success
{ "access_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...", "refresh_token": "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...", "expires_in": 86400, "message": "Login successful" }
Login with email and password for API accounts. Returns access tokens directly — no 2FA required. Protected by brute force prevention.
Login successful.