Seller Assistant API
HomeSeller AssistantHelp CenterAccount
HomeSeller AssistantHelp CenterAccount
Get API Keys
  1. User Info
  • Introduction
  • Authentication
  • Throttling
  • Error Handling
  • Marketplace IDs and Categories
  • User Info
    • Get current user info
      GET
  • Products
    • Get product info
      GET
    • Get product statistics
      GET
    • Calculate product profit
      POST
  • UPC-EAN-ASIN converters
    • Get product ASINs based on identifiers (UPC or EAN)
      GET
    • Get product identifiers (UPC, EAN, etc.) based on ASIN
      GET
  • Restrictions
    • Check ASIN restrictions
      GET
  • Sales Estimation
    • Estimate sales by ASIN
      GET
    • Estimate sales by BSR and category
      POST
  • Keepa
    • Get Keepa product
      GET
  1. User Info

Get current user info

GET
/api/v1/users/me
User Info
Get current user info including name, email and tokens left.

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
Current user info
Body
id
number 
required
ID of user
Example:
123
email
string 
required
Email of user
Example:
test@gmail.com
name
string 
required
Name of user
Example:
My Name
tokensLeft
number 
required
API requests left
Example:
555
tokensUsed
number 
required
API requests used
Example:
445
tokensLimit
number 
required
API requests limit
Example:
1000
tokensRefillAt
string <date>
required
API requests refill date
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
Previous
Marketplace IDs and Categories
Next
Get product info
Built with