GET
/
account
/
info
curl --request GET \
  --url https://api.bytio.com/v1/account/info \
  --header 'X-API-KEY: <api-key>'
{
  "status": "ok",
  "user": {
    "user_id": "<string>",
    "api_key": "<string>",
    "team_id": "<string>",
    "name": "Adam Smith",
    "email": "adam.smith@email.com",
    "role": "admin",
    "picture": "<string>"
  },
  "kyc": {
    "completed_on": "2023-11-07T05:31:56Z"
  },
  "billing": {
    "status": "active",
    "pending_account_closure_date": "2023-11-07T05:31:56Z",
    "pending_downgrade_plan_date": "2023-11-07T05:31:56Z",
    "pending_downgrade_plan_id": "<string>",
    "address": {
      "company_name": "My Company",
      "address_1": "Unit 1",
      "address_2": "My Street",
      "city": "My City",
      "state": "My State",
      "zipcode": 12345,
      "country_code": "us"
    },
    "balance": {
      "amount_cents": 5895.3554498,
      "trial_amount_cents": 1006.3245875,
      "trial_expires_on": "2023-11-07T05:31:56Z",
      "amount_total_cents": 6901.6800373
    },
    "spend": {
      "amount_cents": 6584.32589,
      "minimum_monthly_spend_met": true,
      "prorata_amount_cents": 254.297465
    }
  },
  "plan": {
    "plan_id": "<string>",
    "is_pay_as_you_go": true,
    "name": "Starter",
    "minimum_monthly_spend_cents": 123,
    "prorata_minimum_monthly_spend_cents": 123,
    "next_payment_date": "2023-11-07T05:31:56Z"
  }
}

Authorizations

X-API-KEY
string
header
required

Response

200
application/json
Success
status
enum<string>
Available options:
ok
user
object
kyc
object

An object returning the status of the Know Your Customer (KYC) identity verification process. You can learn more about the Bytio KYC process here - https://docs.bytio.com/account/kyc

billing
object
plan
object