1. Base URL
Use the server URL from the specification: https://{domain}/app.
This reference is generated from openapi.json and includes only operations present in the current specification.
Use the server URL from the specification: https://{domain}/app.
In this spec, GET/PATCH/POST operations use query/path parameters.
Rely on the response status codes listed for each endpoint.
Базовий URL: https://{domain}/app
Тип авторизації: Not specified in openapi.json
Заголовок: Not specified in openapi.json
This specification does not define securitySchemes or global security requirements. Confirm authentication details with the backend team.
| Метод | Шлях | Опис | Доступ |
|---|---|---|---|
| GET | /profile/me | get_profile_info. Responses: 200 | Not specified |
| PATCH | /profile/me | update_profile_info. Query: name (required), password, password_confirmation (required). Responses: 200 | Not specified |
| GET | /ports | list_of_all_ports. Query: id, name. Responses: 200 | Not specified |
| POST | /ports | order_new_port. Query includes count, name, network, authorization_type and optional limits/geolocations/rotation fields. Responses: 200, 421, 500 | Not specified |
| GET | /ports/{id} | getting_data_from_a_specific_port. Path: id (required). Responses: 200, 400 | Not specified |
| POST | /bills | Operation summary in spec: update_profile_info. Uses the same query model as POST /ports. Responses: 200 | Not specified |
| GET | /peers | Query: network, country, region, city, operator. Responses: 200 | Not specified |
curl -X GET "https://{domain}/app/profile/me" \
-H "Accept: application/json"const response = await fetch("https://{domain}/app/ports?id=1&name=GB%20Proxy", {
method: "GET",
headers: { "Accept": "application/json" }
})
const data = await response.json()
console.log(data)import requests
url = "https://{domain}/app/peers"
params = {
"network": "Mobile",
"country": "FR",
"region": "Brittany",
"city": "Rennes",
"operator": "Orange"
}
response = requests.get(url, params=params, headers={"Accept": "application/json"}, timeout=30)
print(response.status_code, response.json())Наша команда допоможе побудувати стабільну та безпечну інтеграцію для вашого кейсу.