Available geo services
A list of all publicly available methods for interacting with the API.
- Main
- ### Calculate order Calculate given order and return the result, this is used in plan selector to show the price of the order. (1 methods)
- ### Pre-Purchase order Convert your order to buy request, then send __order_id__,__total_price__ to [v2/cart/purchaser](/apidocs/cart/purchase). (1 methods)
- Package (16 methods)
- User (17 methods)
- Info
- Api tokens(4 methods)
- Api tokens(4 methods)
- Api tokens(4 methods)
- Referral(10 methods)
- Referral(10 methods)
- Referral(10 methods)
- Sessions(3 methods)
- Money & Balance(10 methods)
- Notifications
- Settings(3 methods)
- Money & Balance(10 methods)
- Abilities(2 methods)
- Money & Balance(10 methods)
- Money & Balance(10 methods)
- Avatar(3 methods)
- Promo(2 methods)
- Get IP information, such as country, city, timezone, etc. (1 methods)
- Get messages from given conversation. (1 methods)
- Checker (3 methods)
- Get available regions in residential country (1 methods)
- Retrieve user actual balance. (1 methods)
- Send message to given conversation. (1 methods)
- Retrieve user balance history. (1 methods)
- ### OAuth start request This request is giving url for oauth authorization, then it will redirect to redirect url with oauth-uid and oauth-signature #### Target Auth URL This is url where user complete oauth authorization (our endpoint). #### Where get API Application? You need contact us in [support](/support) and we will give you API Application (1 methods)
- Return information oauth provider and API application (1 methods)
- Return list of allowed targets (which can be used in oauth). (1 methods)
- Get active user sessions. (1 methods)
- Get info about specified user's API token. (1 methods)
- Get user balance subscriptions (1 methods)
- Referral (1 methods)
- Update referral token (1 methods)
- List registered users (1 methods)
- List received transactions (1 methods)
- List visits by token (1 methods)
- Get user who referred current user. (1 methods)
- Get order / prices information by package. (1 methods)
- Get balance history entry. (1 methods)
- Unsubscribe from balance subscription. (1 methods)
- Delete (1 methods)
- Retrieve download hash for package, for download package proxies. (1 methods)
- Download proxies in specific format, with specific connection type (1 methods)
- Get package features (1 methods)
- Hide selected proxy from list (but it will work, only visual)) (1 methods)
- You can read note for proxy. (1 methods)
- ### How to? Replace ips in package, if you want to add new ips, you need to add them to the `add_countries` array, if you want to remove ips, you need to add them to the `remove_ids` array. You need __money__ to replace ips, if you have __free replacements__ you can use them. (1 methods)
- Rotate proxy, residential, mobile - change ip. (1 methods)
- Add custom user proxy, like for residential constructor. (1 methods)
- Replace proxies by given sequence. (1 methods)
- Get available connection servers (Some servers can give better speed). (1 methods)
- Logout from session, if id is not provided, logout from current session. (1 methods)
- Conversation (3 methods)
- Phone status (1 methods)
- Update user settings, for example: name, email, currency. Some settings need confirmation, for example: email. (1 methods)
- Available countries (1 methods)
- Cart (4 methods)
- ### Purchase order This method is used to purchase the order, you need to send the _order_id_, _overall_ *(Is total_price, based on user currency)* from [v2/cart/order](/apidocs/cart/order) to this endpoint to purchase the order. (1 methods)
- View ticket (1 methods)
- Get current activated abilities for api token. (1 methods)
- Make payment request, then redirect to payment page. (1 methods)
- Statistics (1 methods)
- Phone (1 methods)
- Get linked accounts (1 methods)
- Other linked accounts (1 methods)
- Get active promocodes for user. (1 methods)
- Get user features (1 methods)
- Toggle features (1 methods)
- Unlink account (1 methods)
- Summary statistics (1 methods)
GET
Get cart available geo services -/cart/available-geo-services
Query method
GEThttp://apilocal.stableproxy.com/v2/cart/available-geo-services
Code examples
JavaScript
1async function getCartAvailableGeoServices() {
2 const baseUrl = 'http://apilocal.stableproxy.com/v2';
3 const req = await fetch(baseUrl + '/cart/available-geo-services', {
4 method: 'GET',
5 headers: {
6 'Content-Type': 'application/json'
7 }
8 }
9 );
10
11 const res = await req.json();
12}