Skip to main content

GET

Get your proxies

Retrieves a list of proxies associated with the user, optionally filtered by plan type.

Authorizations

Name Type Required Description
bearerAuth http Yes Bearer token for authentication. Include in the Authorization header as 'Bearer <token>'. The token can be obtained through your account dashboard.
curl --request GET \
  --url https://globalbyte.io/api/v1/proxies \
  --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'

Responses

Code: 200

Description: A list of active or pending proxies associated with the user.

Content Type: application/json

Name Type Required Description
proxies
object[]
No
Array of proxy objects.
▼ Show child attributes

Code: 401

Description: Unauthorized access.

Content Type: application/json

Name Type Required Description
message
string
No
Human-readable message describing the unauthorized error.

Code: 500

Description: Error response.

Content Type: application/json

Name Type Required Description
message
string
No
Human-readable message describing the error.
{
  "proxies": [
    {
      "username": "a13e12831a6f2640",
      "password": "f6cd1daacfd3e8a9",
      "port": 10000,
      "proxy_tags": [
        {
          "value": "tag1",
          "id": "123e4567-e89b-12d3-a456-426614174018"
        }
      ],
      "host": "texas.globalbyte.io",
      "region": "GB",
      "type": "mobile-proxy",
      "rotation_interval": 60,
      "rotating": true,
      "status": 200,
      "subscription_id": "123e4567-e89b-12d3-a456-426614174019",
      "id": "123e4567-e89b-12d3-a456-426614174020",
      "subscriptions": {
        "tier": "extended",
        "created_at": "2023-01-01T00:00:00Z",
        "id": "123e4567-e89b-12d3-a456-426614174019"
      }
    },
    {
      "username": "a13e12831a6f2640",
      "password": "f6cd1daacfd3e8a9",
      "port": 10000,
      "proxy_tags": [],
      "host": "texas.globalbyte.io",
      "region": "US-NY",
      "type": "mobile-proxy",
      "rotation_interval": 120,
      "rotating": false,
      "status": 200,
      "subscription_id": null,
      "id": "123e4567-e89b-12d3-a456-426614174021",
      "subscriptions": {
        "tier": "residential_proxy_1_monthly",
        "created_at": "2023-01-01T00:00:00Z",
        "id": "123e4567-e89b-12d3-a456-426614174022"
      }
    }
  ]
}