WebScraping.AI Account API

Information about your account API credits quota

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/webscraping-ai-account-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 email required.

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

OpenAPI Specification

webscraping-ai-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: WebScraping.AI Account API
  contact:
    name: WebScraping.AI Support
    url: https://webscraping.ai
    email: support@webscraping.ai
  version: 3.2.1
  description: WebScraping.AI scraping API provides LLM-powered tools with Chromium JavaScript rendering, rotating proxies, and built-in HTML parsing.
servers:
- url: https://api.webscraping.ai
security:
- api_key: []
tags:
- name: Account
  description: Information about your account API credits quota
paths:
  /account:
    get:
      summary: Information about your account calls quota
      description: Returns information about your account, including the remaining API credits quota, the next billing cycle start time, and the remaining concurrent requests. The response is in JSON format.
      operationId: account
      tags:
      - Account
      responses:
        403:
          $ref: '#/components/responses/403'
        200:
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Account'
              example:
                remaining_api_calls: 200000
                remaining_monthly_credits: 200000
                remaining_payg_credits: 100000
                remaining_total_credits: 300000
                resets_at: 1617073667
                remaining_concurrency: 100
components:
  schemas:
    Account:
      title: Account limits info
      type: object
      properties:
        email:
          type: string
          description: Your account email
        remaining_api_calls:
          type: integer
          deprecated: true
          description: Deprecated alias of remaining_monthly_credits, kept for backward compatibility
        remaining_monthly_credits:
          type: integer
          description: Remaining monthly API credits on the subscription plan (does not include pay-as-you-go credits)
        remaining_payg_credits:
          type: integer
          description: Remaining pay-as-you-go credits, consumed after the monthly quota is exhausted (valid for 12 months after the last top-up)
        remaining_total_credits:
          type: integer
          description: Total remaining API credits (monthly + pay-as-you-go)
        resets_at:
          type: integer
          description: Next billing cycle start time (UNIX timestamp)
        remaining_concurrency:
          type: integer
          description: Remaining concurrent requests
  securitySchemes:
    api_key:
      type: apiKey
      name: api_key
      in: query