Scraper Subdomain Active

ProLancer IT Scraper Gateway

A secure, robust browser automation and licensing API endpoint interfacing with third-party license panels.

Gateway status: Operational
API Version: v1

Endpoint Specifications

POST https://scraper.prolancerit.com/api/v1/request

Allows requesting automation actions on key resellers (e.g. fetching products, checking balance, or generating licenses).

Request Payload Details

Parameter Type Required Description
api_token String Yes Your reseller/partner authentication token.
action String Yes The operation to perform: products, generate, websites, or balance.
website String Yes The target resale panel domain (e.g. licencedashboard.shop).
username String Conditional Required for products, generate, and balance.
password String Conditional Required for products, generate, and balance.

Action: generate (Extra Parameters)

Parameter Type Required Description
product_name String Yes Name of the target license key product.
validity String Yes Duration validity of the key (e.g. 1 year).
quantity Integer No Defaults to 1.
SAMPLE ACTION: websites
{
  "api_token": "prolancer_key_token_2026",
  "action": "websites"
}
SAMPLE RESPONSE
{
  "success": true,
  "message": "Allowed websites fetched successfully",
  "data": [
    {
      "id": "licencedashboard.shop",
      "name": "Licence Dashboard",
      "auth_mode": "credentials"
    }
  ]
}