Proxy Sale
  • Introduction
  • Getting Started
  • API Reference
    • Balance
      • Get Balance
      • Add Balance
      • Pay Methods
    • Proxies
      • List Proxies
      • Download Proxies
      • Set Proxy Comments
    • Order
      • Reference List
      • Calculate Order
      • Create Order
    • Renewal
      • Calculate Renewal
      • Create Renewal Order
    • Residential Proxies
      • Package Info
      • Download Geo
      • Get IP Lists
      • Create IP List
      • Rename IP List
      • Delete IP List
      • API-TOOL
  • Users Links
    • FAQ
    • Blog
  • Support
    • support@proxy-sale.com
    • Telegram
Powered by GitBook
On this page
  • Registration and Authentication
  • Basic Setup
  • Usage Example
  • Response

Getting Started

PreviousIntroductionNextAPI Reference

Last updated 1 year ago

Registration and Authentication

To start using the ProxySale API, you first need to register for an account on our . Registration is the first step to accessing the features of ProxySale API.

After you have registered, you will need to navigate to the in your dashboard to generate an API key. This API key is required for all API requests to authenticate your identity. Keep your API key secure and do not share it publicly.

Basic Setup

Before you make your first request, ensure you're equipped with the necessary tools for making HTTP requests. Although our examples focus on using cURL, a widely supported tool for interacting with APIs directly from the command line or scripts, you can use any tool or library that suits your development needs.

Usage Example

To get you started, here's a simple example using cURL to check your account balance:


curl -X GET "https://proxy-sale.com/personal/api/v1/YOUR_API_KEY_HERE/balance/get" \
     -H "Content-Type: application/json"
            

Response

A successful request returns a JSON object with your balance information:

{
  "status": "success",
  "data": {
    "summ": 20
  },
  "errors": []
}

For more detailed information and examples on using the ProxySale API, refer to the section of this documentation. You'll find comprehensive guides on all available endpoints, including request formats, response structures, and usage scenarios

website
API section
API Reference