For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Calculator
OverviewAPI Endpoints
OverviewAPI Endpoints
  • Endpoints
      • POSTRegister a new user
      • POSTLog in and obtain JWT tokens
      • GETVerify email address
      • POSTRequest password reset
      • POSTReset password
Calculator
LogoLogo
EndpointsAuthentication

Log in and obtain JWT tokens

POST
https://api.finput.com.au/api/v1/auth/login
POST
/api/v1/auth/login
$curl -X POST https://api.finput.com.au/api/v1/auth/login \
> -H "Content-Type: application/json" \
> -d '{
> "email": "user@example.com",
> "password": "securePassword123"
>}'
1{
2 "tokens": {
3 "access": "access",
4 "refresh": "refresh"
5 },
6 "email": "email"
7}

Authenticates with email/password and returns access + refresh JWT tokens.

Was this page helpful?
Previous

Verify email address

Next
Built with

Request

This endpoint expects an object.
emailstringRequired
passwordstringRequired

Response

Login successful
tokensobject
emailstring

Errors

401
Login Request Unauthorized Error