---
title: "Get your user info"
method: GET
path: "/v1/user"
tags: ["User"]
---

# Get your user info

`GET /v1/user`

Returns the data associated with the authenticated account: name, plan, billing details, remaining credits, and concurrency caps.

## Response `200`

Get your user info

- TestingbotEntitiesUser — Testingbot_Entities_User model
  - `id` integer, required — Unique numeric user ID. Also the path param for team endpoints (e.g. /users/:id) and the parent_id reference on team members.
  - `first_name` string, required — Given name on the account.
  - `last_name` string, required — Family name on the account.
  - `seconds` integer, required — Remaining test seconds (credit balance) on the account; -1 means unlimited (e.g. Live plans).
  - `last_login` string, date-time, required — ISO-8601 timestamp of the most recent dashboard login.
  - `plan` string, required — Subscription plan name (e.g. "Free Trial", "Live - 5 Sessions - Unlimited", "Automated Pro ..."). For a sub-account this is the team owner's plan.
  - `max_concurrent` integer, required — Maximum number of parallel VM-based sessions allowed by the plan. For a sub-account this is the team owner's cap.
  - `max_concurrent_mobile` integer, required — Maximum number of parallel physical device sessions allowed by the plan. For a sub-account this is the team owner's cap.
  - `company` string, required — Optional company name for billing.
  - `street` string, required — Billing address line.
  - `city` string, required — Billing city.
  - `country` string, required — Billing country.
  - `vat` string, required — VAT number (EU only).
  - `read_only` boolean, required — Whether this account has read-only access within the team.
  - `roles` string[], required — Roles held by the account: "admin" and/or "owner".
  - `current_vm_concurrency` integer, required — VM-based sessions this account is running right now.
  - `current_physical_concurrency` integer, required — Physical-device sessions this account is running right now.

## Other responses

- `401` — Authentication required

---

[API](https://skmtc.net/testingbot/apis/testingbot-rest-api.md) · [All operations](https://skmtc.net/testingbot/apis/testingbot-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/testingbot/testingbot-rest-api/versions/eff607a49246/schema)
