Passer au contenu principal
GET
/
auth
Get Auth Info
curl --request GET \
  --url https://api.immoteur.com/public/v1/auth \
  --header 'Authorization: Bearer <token>'
{
  "email": "[email protected]",
  "tokenCreatedAt": "2025-09-01T10:15:30Z",
  "tokenName": "prod-ci-key-1"
}

Authorizations

Authorization
string
header
required

Send your Immoteur Personal Access Token in the Authorization header: Authorization: Bearer <token>

Response

Authenticated account and token information

email
string<email>
required

Email address of the authenticated account

tokenCreatedAt
string<date-time>
required

Creation date of the token

Example:

"2025-09-01T10:15:30Z"

tokenName
string
required

Name of the current auth token

Example:

"prod-ci-key-1"

I