Introduction
API Reference
Cloud Browser
Python SDK
Limitations
Proxy
Find proxy by id
Gets a proxy info by proxy id.
GET
/
proxy
/
{id}
curl --request GET \
--url https://api.gologin.com/proxy/{id} \
--header 'Authorization: Bearer <token>'
{
"_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
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
id of the proxy.
Response
200 - application/json
The response is of type object
.
curl --request GET \
--url https://api.gologin.com/proxy/{id} \
--header 'Authorization: Bearer <token>'
{
"_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
}