get
https://api.neutron.me/api/v2/account/
Retrieve the account information
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
Retrieve details for an account or subaccount, including display name, status, country, and configuration.
Example Request
curl https://api.neutron.me/api/v2/account/YOUR_ACCOUNT_ID \
-H "Authorization: Bearer YOUR_ACCESS_TOKEN"Example Response
{
"data": {
"id": "ne01-abc123def456",
"displayName": "My Company",
"accountStatus": "active",
"autoUserConfirm": false,
"countryCode": "CA",
"timezone": "America/Toronto",
"createdAt": "2025-01-15T10:00:00.000Z",
"updatedAt": "2026-02-01T08:30:00.000Z"
}
}Response Fields
| Field | Type | Description |
|---|---|---|
id | string | Unique account identifier (e.g., ne01-...) |
parentId | string | Present if this is a subaccount — the parent account's ID |
extId | string | External reference ID for subaccounts (set by parent) |
displayName | string | Account display name |
accountStatus | string | Current status (e.g., active) |
autoUserConfirm | boolean | If true, transactions skip the manual confirm step |
countryCode | string | Account's country code (e.g., CA, VN) |
timezone | string | Account timezone |
createdAt | string | Account creation timestamp |
updatedAt | string | Last update timestamp |
Access Control
- Works for both accounts and subaccounts
- Subaccount info can be retrieved by the subaccount itself or its parent account
- Requesting another account's info returns 401 Unauthorized
Subaccounts
If the account has a parentId, it's a subaccount. Subaccounts are useful for:
- Marketplaces — each seller gets a subaccount
- Platforms — each user gets isolated wallets
- Multi-entity businesses — separate accounting per entity
The extId field lets you map subaccounts to your own system's user/entity IDs.
404Not Found
