Skip to main content
GET
/
users
cURL
curl --request GET \
  --url https://public-api.lonescale.com/users \
  --header 'x-api-key: <api-key>'
[
  {
    "id": "<string>",
    "firstName": "<string>",
    "lastName": "<string>",
    "email": "<string>",
    "plan": {
      "contactCredits": 123,
      "enrichmentCredits": 123
    }
  }
]

Authorizations

x-api-key
string
header
required

Provide your API key in the x-api-key header.

Response

Profile information

id
string
required

The user ID

firstName
string
required

User first name

lastName
string
required

User last name

email
string
required

User email address

plan
object