Oxylabs Users API

The Users API from Oxylabs — 4 operation(s) for users.

Operations 7

GET /users/{userId}/sub-users List sub-users #
POST /users/{userId}/sub-users Create a sub-user #
GET /users/{userId}/sub-users/{subUserId} Get sub-user #
PATCH /users/{userId}/sub-users/{subUserId} Update sub-user #
DELETE /users/{userId}/sub-users/{subUserId} Delete sub-user #
GET /users/{userId}/sub-users/{subUserId}/target-stats Get sub-user target statistics #
GET /users/{userId}/client-stats Get client statistics #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/oxylabs-users-api"
All apis
curl "https://apis.io/api/v1/apis?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.

OpenAPI Specification

oxylabs-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oxylabs Web Intelligence APIs Login Users API
  description: Oxylabs provides web scraping and data extraction APIs including the Web Scraper API (Realtime and Push-Pull), the Dashboard API for usage and statistics, and the Residential Public API for sub-user and stats management.
  version: '1.0'
  contact:
    name: Oxylabs Developer Support
    url: https://developers.oxylabs.io/
servers:
- url: https://realtime.oxylabs.io/v1
  description: Web Scraper API - Realtime
- url: https://data.oxylabs.io/v1
  description: Web Scraper API - Push-Pull
- url: https://api.oxylabs.io
  description: Dashboard API
- url: https://residential-api.oxylabs.io/v2
  description: Residential Public API
security:
- basicAuth: []
- bearerAuth: []
tags:
- name: Users
paths:
  /users/{userId}/sub-users:
    parameters:
    - $ref: '#/components/parameters/UserId'
    get:
      summary: List sub-users
      operationId: listSubUsers
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Sub-user list
      tags:
      - Users
    post:
      summary: Create a sub-user
      operationId: createSubUser
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubUser'
      responses:
        '201':
          description: Sub-user created
      tags:
      - Users
  /users/{userId}/sub-users/{subUserId}:
    parameters:
    - $ref: '#/components/parameters/UserId'
    - $ref: '#/components/parameters/SubUserId'
    get:
      summary: Get sub-user
      operationId: getSubUser
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Sub-user record
      tags:
      - Users
    patch:
      summary: Update sub-user
      operationId: updateSubUser
      security:
      - bearerAuth: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SubUser'
      responses:
        '200':
          description: Updated
      tags:
      - Users
    delete:
      summary: Delete sub-user
      operationId: deleteSubUser
      security:
      - bearerAuth: []
      responses:
        '204':
          description: Deleted
      tags:
      - Users
  /users/{userId}/sub-users/{subUserId}/target-stats:
    parameters:
    - $ref: '#/components/parameters/UserId'
    - $ref: '#/components/parameters/SubUserId'
    get:
      summary: Get sub-user target statistics
      operationId: getSubUserTargetStats
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Target statistics
      tags:
      - Users
  /users/{userId}/client-stats:
    parameters:
    - $ref: '#/components/parameters/UserId'
    get:
      summary: Get client statistics
      operationId: getClientStats
      security:
      - bearerAuth: []
      responses:
        '200':
          description: Client statistics
      tags:
      - Users
components:
  parameters:
    UserId:
      in: path
      name: userId
      required: true
      schema:
        type: integer
    SubUserId:
      in: path
      name: subUserId
      required: true
      schema:
        type: integer
  schemas:
    SubUser:
      type: object
      properties:
        sub_user_name:
          type: string
        password:
          type: string
        traffic_limit:
          type: integer
        status:
          type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
    bearerAuth:
      type: http
      scheme: bearer