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",
  "meta": {
    "subscriptionPlan": "pro200",
    "dataAccessLimit": {
      "departments": [
        "75",
        "92"
      ],
      "sirens": [
        "123456789"
      ],
      "sirets": [
        "12345678900011"
      ]
    }
  }
}

Authorizations

Authorization
string
header
required

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

You can create and manage your Personal Access Tokens here: https://immoteur.com/dashboard/settings status: current: available

Response

Authenticated account and token information

email
string<email>
required

Email address of the authenticated account

meta
object
required
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"