Information
A list of all publicly available methods for interacting with the API.
- Main
- Cart (8 methods)
- Package (29 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Info(4 methods)
- Order ### How to change? You can manage your order here, like change count, traffic, period, countries, etc. You need __money__ to change order, Package(5 methods)
- Info(4 methods)
- Delete
- Download hash(3 methods)
- Download hash(3 methods)
- Download(3 methods)
- Features Package(2 methods)
- Features(2 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Order(5 methods)
- Order ### How to change? You can manage your order here, like change count, traffic, period, countries, etc. You need __money__ to change order, Package(5 methods)
- Order(5 methods)
- Order ### How to change? You can manage your order here, like change count, traffic, period, countries, etc. You need __money__ to change order, Package(5 methods)
- Proxies Package(11 methods)
- Proxies Package(11 methods)
- Proxies(11 methods)
- Replace proxies by given sequence.(11 methods)
- Settings(2 methods)
- Settings(2 methods)
- Connection bridges(2 methods)
- Connection bridges(2 methods)
- Information(4 methods)
- User (46 methods)
- Information
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Oauth(3 methods)
- Oauth(3 methods)
- Oauth(3 methods)
- Sessions Get session by id. User(3 methods)
- Fire tokens(4 methods)
- Api tokens(4 methods)
- Fire tokens(4 methods)
- Fire tokens(4 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Sessions(3 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Money & Balance(10 methods)
- Sessions Get session by id. User(3 methods)
- Notifications
- Phone status(2 methods)
- Settings(3 methods)
- Settings(3 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Abilities Check if token has ability to do something. User(2 methods)
- Abilities(2 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Money & Balance(10 methods)
- Money & Balance Get allowed and enabled payment methods (some countries may have restrictions). User(10 methods)
- Phone(2 methods)
- Avatar(3 methods)
- Other linked accounts(3 methods)
- Other linked accounts(3 methods)
- Promo(2 methods)
- Promotion(2 methods)
- Features Package(2 methods)
- Features Package(2 methods)
- Other linked accounts(3 methods)
- Referral(10 methods)
- Checker (4 methods)
- Conversation (6 methods)
- Information (1 methods)
GET
Get user info -/user/info
This method requires authorization!
You can use your own API key, which can be obtained at control panel.
This method - requires permissions - user.read
When creating an API token in your control panel, you can choose certain permissions (for example: prevent the token from placing orders).
You can also find a list of permissions in our documentation.
You can also find a list of permissions in our documentation.
Query method
GEThttp://apilocal.stableproxy.com/v2/user/info
Code examples
JavaScript
1async function getUserInfo() {
2 const baseUrl = 'http://apilocal.stableproxy.com/v2';
3 const req = await fetch(baseUrl + '/user/info', {
4 method: 'GET',
5 headers: {
6 'Authorization': 'API-Token [YOUR TOKEN]',
7 'Content-Type': 'application/json'
8 }
9 }
10 );
11
12 const res = await req.json();
13}