Oxylabs · Arazzo Workflow

Oxylabs Residential Login and List Sub-users

Version 1.0.0

Exchange basic auth for a bearer token and list the residential proxy sub-users.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AI Web ScrapingBot Mitigation BypassCAPTCHA SolvingData ExtractionDatacenter ProxiesDatasetsE-Commerce DataHeadless BrowserISP ProxiesMobile ProxiesProxiesResidential ProxiesSERPScraper APIScrapingWeb DataWeb IntelligenceWeb UnblockerArazzoWorkflows

Provider

oxylabs

Workflows

residential-login-and-list-sub-users
Log in to the Residential API and list sub-users.
Logs in with basic auth to obtain a bearer token and the account user id, then lists the sub-users under that account.
2 steps inputs: password, username outputs: subUsers, token, userId
1
login
Exchange the account username and password for a bearer token and the numeric account user id.
2
listSubUsers
List the sub-users under the authenticated account using the freshly issued bearer token.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Oxylabs Residential Login and List Sub-users
  summary: Exchange basic auth for a bearer token and list the residential proxy sub-users.
  description: >-
    Authenticates against the Residential Public API by exchanging the
    account username and password for a bearer token, then uses that token to
    list the sub-users provisioned under the account. This is the foundational
    bootstrap for any residential proxy management flow because every
    management operation on the Residential API is bearer-authenticated while
    only the login operation accepts basic auth. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: loginApi
  url: ../openapi/oxylabs-login-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/oxylabs-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: residential-login-and-list-sub-users
  summary: Log in to the Residential API and list sub-users.
  description: >-
    Logs in with basic auth to obtain a bearer token and the account user id,
    then lists the sub-users under that account.
  inputs:
    type: object
    required:
    - username
    - password
    properties:
      username:
        type: string
        description: Residential API account username for basic auth.
      password:
        type: string
        description: Residential API account password for basic auth.
  steps:
  - stepId: login
    description: >-
      Exchange the account username and password for a bearer token and the
      numeric account user id.
    operationId: residentialLogin
    parameters:
    - name: Authorization
      in: header
      value: "Basic {$inputs.username}:{$inputs.password}"
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      token: $response.body#/token
      userId: $response.body#/user_id
  - stepId: listSubUsers
    description: >-
      List the sub-users under the authenticated account using the freshly
      issued bearer token.
    operationId: listSubUsers
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $steps.login.outputs.token"
    - name: userId
      in: path
      value: $steps.login.outputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subUsers: $response.body
  outputs:
    token: $steps.login.outputs.token
    userId: $steps.login.outputs.userId
    subUsers: $steps.listSubUsers.outputs.subUsers

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/oxylabs-residential-login-and-list-sub-users-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.