This page gives an overview of the User API, which retrieves information about a user.
Overview
The ScrapeIN User API allows you to access the following information:
- Retrieve the current balance.
- View the maximum number of allowed requests.
The User API returns parameters in JSON format as an array. This service is provided free of charge.
Example
Get the current user profile with {API-KEY}
Request:
https://app.scrapein.app/api/v1/user/profile?api_key={API-KEY}
Response:
{
"role": "user",
"email": "[email protected]",
"full_name": null,
"company_name": null,
"business_email": null,
"kyc_completed": "uncompleted",
"balance_serp": 624999,
"balance_amazon": 9905,
"api_key": "{API-KEY}",
"is_active": true,
"address1": null,
"address2": null,
"city": null,
"zip_code": null,
"country": null
}