Your Accountusers

users

View your Datafiniti account information and status.

curl -X GET "https://api.datafiniti.co/v3/users" \
  -H "Content-Type: application/json" \
  -H "Authorization: Basic YOUR_CREDENTIALS"
[{
  "token": "AAAXXXXXXXXXXXX",
  "organization": "Acme Corp",
  "email": "user@example.com",
  "first_name": "John",
  "last_name": "Doe",
  "phone_number": "555-123-4567",
  "plan_id": "free",
  "type": "user",
  "active": 1,
  "available_downloads": 10000,
  "date_registered": "2017-01-01 00:00:00"
}]
GET
/users
GET
Basic Authentication
Usernamestring
Required

Username for basic authentication

Passwordpassword
Required

Password for basic authentication

V3 uses Basic Authentication with your API token as the username and no password. In URL form: https://YOUR_API_TOKEN:@api.datafiniti.co/v3/... In cURL: --user YOUR_API_TOKEN: (note the trailing colon). Get your token from the Datafiniti Web Portal at https://portal.datafiniti.co.
Request Preview
Response

Response will appear here after sending the request

Authentication

header
Authorizationstring
Required

Basic authentication credentials. V3 uses Basic Authentication with your API token as the username and no password. In URL form: https://YOUR_API_TOKEN:@api.datafiniti.co/v3/... In cURL: --user YOUR_API_TOKEN: (note the trailing colon). Get your token from the Datafiniti Web Portal at https://portal.datafiniti.co.

Responses

tokenstring

Your API token

organizationstring

Your organization or company name

emailstring

Your email address

first_namestring

Your first name

last_namestring

Your last name

phone_numberstring

Your phone number

plan_idstring

The Datafiniti plan to which you're subscribed

typestring

Your account type. Should be set to 'user'.

activeinteger

Whether or not your account is active

available_downloadsinteger

The number of records you can download at this time

date_registeredstring

The date your account was created

The users endpoint lets you view the status of your Datafiniti account, including your plan information, credit usage, and account details.