Adsmom Inc. Account API

The Account API from Adsmom Inc. — 1 operation(s) for account.

Business capability
API Consumption Governance BC-4270.50

Operations 1

GET /api/v1/usage Current credits, rate limit, plan, and tracked-advertiser count #

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/adsmom-inc-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 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

adsmom-inc-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adsmom Account API
  description: Stable REST API for tracked ad intelligence across Meta, TikTok, and Google. Authenticate with OAuth 2.0 client_credentials.
  version: '1.0'
  contact: {}
servers:
- url: /
tags:
- name: Account
paths:
  /api/v1/usage:
    get:
      operationId: getUsage
      parameters: []
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Usage'
      summary: Current credits, rate limit, plan, and tracked-advertiser count
      tags:
      - Account
components:
  schemas:
    UsageCredits:
      type: object
      properties:
        used:
          type: number
          description: Credits consumed this period.
          example: 4210
        limit:
          type: number
          description: Credit limit for this period.
          example: 5000
        remaining:
          type: number
          description: Credits remaining this period.
          example: 790
        period_start:
          type:
          - string
          - 'null'
          description: Start of the current billing period (ISO 8601).
        period_end:
          type:
          - string
          - 'null'
          description: End of the current billing period (ISO 8601).
      required:
      - used
      - limit
      - remaining
      - period_start
      - period_end
    Usage:
      type: object
      properties:
        plan:
          type: string
          example: BUSINESS
        tracked_advertisers:
          type: number
          description: Active tracked advertisers.
          example: 37
        credits:
          $ref: '#/components/schemas/UsageCredits'
        rate_limit:
          $ref: '#/components/schemas/UsageRateLimit'
      required:
      - plan
      - tracked_advertisers
      - credits
      - rate_limit
    UsageRateLimit:
      type: object
      properties:
        requests_per_minute:
          type: number
          description: Requests allowed per window.
          example: 120
      required:
      - requests_per_minute
  securitySchemes:
    oauth:
      scheme: bearer
      bearerFormat: JWT
      type: http