Introduction
API Reference
Cloud Browser
Python SDK
Limitations
Proxy
Get list of all proxies
Gets all proxies of the user with pagination.
GET
/
proxy
/
v2
curl --request GET \
--url https://api.gologin.com/proxy/v2 \
--header 'Authorization: Bearer <token>'
{
"proxies": [
{
"_id": "<string>",
"id": "<string>",
"mode": {},
"host": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"lastIp": "<string>",
"changeIpUrl": "<string>",
"profiles": [
"<string>"
],
"profilesCount": 123,
"customName": "<string>",
"status": true,
"country": "<string>",
"city": "<string>",
"checkDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"languages": "<string>",
"connectionType": {},
"notes": "<string>",
"isRestoredByOwner": true
}
],
"hasMore": true
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Query Parameters
Page number for pagination.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.gologin.com/proxy/v2 \
--header 'Authorization: Bearer <token>'
{
"proxies": [
{
"_id": "<string>",
"id": "<string>",
"mode": {},
"host": "<string>",
"port": 123,
"username": "<string>",
"password": "<string>",
"lastIp": "<string>",
"changeIpUrl": "<string>",
"profiles": [
"<string>"
],
"profilesCount": 123,
"customName": "<string>",
"status": true,
"country": "<string>",
"city": "<string>",
"checkDate": "2023-11-07T05:31:56Z",
"createdAt": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"languages": "<string>",
"connectionType": {},
"notes": "<string>",
"isRestoredByOwner": true
}
],
"hasMore": true
}