- Introduction
- Authentication
- Throttling
- Error Handling
- Marketplace IDs and Categories
- User Info
- Products
- UPC-EAN-ASIN converters
- Restrictions
- Sales Estimation
- Keepa
Get current user info
GET
/api/v1/users/me
User Info
Request
Authorization
Add parameter in header
X-Api-Key
Example:
X-Api-Key: ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://app.sellerassistant.app/api/v1/users/me' \
--header 'X-Api-Key;'
Responses
🟢200OK
application/json
Body
id
number
required
Example:
123
email
string
required
Example:
test@gmail.com
name
string
required
Example:
My Name
tokensLeft
number
required
Example:
555
tokensUsed
number
required
Example:
445
tokensLimit
number
required
Example:
1000
tokensRefillAt
string <date>
required
Example:
2024-10-02T00:00:00.000000Z
Example
{
"id": 123,
"email": "test@gmail.com",
"name": "My Name",
"tokensLeft": 555,
"tokensUsed": 445,
"tokensLimit": 1000,
"tokensRefillAt": "2024-10-02T00:00:00.000000Z"
}
🟠402402
🟠403Forbidden
🟠429429
🔴500Server Error
Modified at 2025-01-16 08:37:58