ScrapingAnt Usage API

Account credit metering for ScrapingAnt. GET /v2/usage returns the current plan name, subscription period, total plan credits and remaining credits - the only way to observe budget on an API that publishes no rate-limit headers and returns an ambiguous 403 when credits are exhausted.

Operations 1

GET /v2/usage Scrapingant Usage #

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/scrapingant-usage-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

scrapingant-usage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ScrapingAnt Usage API
  description: ScrapingAnt web scraping API. Harvested verbatim from the provider's published OpenAPI at https://api.scrapingant.com/openapi.json
    on 2026-08-29 and refined into one document per tag. The original document declares no tags and reuses a single
    operationId across all five HTTP methods on /v2/general; unique operationIds were assigned here and the divergence
    is recorded in overlays/scrapingant-scraping-api-overlay.yaml. No operation, parameter, response or schema was
    added, removed or altered.
  version: v2
servers:
- url: https://api.scrapingant.com
  description: Production ScrapingAnt API
security:
- ApiKeyAuth: []
tags:
- name: Usage
paths:
  /v2/usage:
    get:
      summary: Scrapingant Usage
      operationId: scrapingant_usage_v2_usage_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiGeneralUsageResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      parameters:
      - in: query
        name: x-api-key
        required: true
        schema:
          type: string
        description: API token, required for authentication. You can find your API token on the dashboard page in
          the user's admin panel.
      description: Get current status of API credits usage
      tags:
      - Usage
components:
  schemas:
    ApiGeneralUsageResponse:
      properties:
        plan_name:
          type: string
          title: Plan Name
        start_date:
          type: string
          format: date-time
          title: Start Date
        end_date:
          type: string
          format: date-time
          title: End Date
        plan_total_credits:
          type: integer
          title: Plan Total Credits
        remained_credits:
          type: integer
          title: Remained Credits
      type: object
      required:
      - plan_name
      - start_date
      - end_date
      - plan_total_credits
      - remained_credits
      title: ApiGeneralUsageResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: x-api-key
      description: ScrapingAnt API key, passed as the x-api-key query parameter. The provider also accepts it as
        an x-api-key request header (docs.scrapingant.com/request-response-format).