Skip to main content
GET
/
x
/
accounts
/
{id}
Get X account
curl --request GET \
  --url https://xquik.com/api/v1/x/accounts/{id} \
  --header 'x-api-key: <x-api-key>'
Free — does not consume credits
curl -X GET https://xquik.com/api/v1/x/accounts/3 \
  -H "x-api-key: xq_YOUR_KEY_HERE" | jq

Path parameters

id
string
required
The unique account ID. Returned when you connect an account or list accounts.

Headers

x-api-key
string
required
Your API key. Session cookie authentication is also supported. Generate a key from the dashboard.

Response

id
string
Unique account ID.
xUsername
string
X username.
xUserId
string
X user ID.
status
string
Account connection status (e.g. "active").
proxyCountry
string
Proxy region used for the connection (e.g. "US").
cookiesObtainedAt
string
ISO 8601 timestamp of when session cookies were last obtained. Omitted if not yet authenticated.
createdAt
string
ISO 8601 timestamp of when the account was connected.
updatedAt
string
ISO 8601 timestamp of the last update.
{
  "id": "3",
  "xUsername": "elonmusk",
  "xUserId": "44196397",
  "status": "active",
  "proxyCountry": "US",
  "cookiesObtainedAt": "2026-02-20T08:15:00.000Z",
  "createdAt": "2026-02-20T08:15:00.000Z",
  "updatedAt": "2026-02-20T08:15:00.000Z"
}
Related: List X Accounts to see all accounts, Disconnect to remove this account, or Re-authenticate if the session has expired.