BizVerify Account API

The Account API from BizVerify — 5 operation(s) for account.

Operations 6

GET /v1/account/ #
PATCH /v1/account/ #
GET /v1/account/usage #
GET /v1/account/data-export #
POST /v1/account/keys #
DELETE /v1/account/keys/{keyId} #

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/bizverify-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

bizverify-account-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bizverify Account API
  version: 1.0.0
  description: 'Operations tagged Account across 2 of this provider''s published API definitions: bizverify-account-api-openapi.yml, bizverify-openapi.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.bizverify.co
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Account
paths:
  /v1/account/:
    get:
      operationId: getAccount
      tags:
      - Account
      description: Get your account details including email, plan, credit balance, and all API keys. Use this to check your current credit balance before making API calls.
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Your account ID
                  email:
                    type: string
                    description: Account email address
                  email_verified:
                    type: boolean
                    description: Whether the email has been verified
                  plan:
                    type: string
                    enum:
                    - free
                    - paid
                    description: Current billing plan
                  credit_balance:
                    type: number
                    description: Current credit balance available for API calls
                  api_keys:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique API key identifier
                        label:
                          type: string
                          description: Human-readable label for the key
                        prefix:
                          type: string
                          description: First 8 characters of the key for identification
                        rate_limit:
                          type: number
                          description: Requests per minute allowed for this key
                        is_active:
                          type: boolean
                          description: Whether the key is currently active
                        created_at:
                          description: When the key was created
                          type: string
                          format: date-time
                      required:
                      - id
                      - label
                      - prefix
                      - rate_limit
                      - is_active
                      - created_at
                      additionalProperties: false
                    description: All API keys associated with this account
                  created_at:
                    description: When the account was created
                    type: string
                    format: date-time
                required:
                - id
                - email
                - email_verified
                - plan
                - credit_balance
                - api_keys
                - created_at
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    patch:
      operationId: updateEmail
      tags:
      - Account
      description: Update your account email address. Sets email_verified to false and sends a verification email to the new address. You must re-verify before using credit-consuming endpoints.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                email:
                  type: string
                  format: email
                  pattern: ^(?!\.)(?!.*\.\.)([A-Za-z0-9_'+\-\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\-]*\.)+[A-Za-z]{2,}$
                  description: New email address. A verification email will be sent to this address.
              required:
              - email
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Your account ID
                  email:
                    type: string
                    description: Account email address
                  email_verified:
                    type: boolean
                    description: Whether the email has been verified
                  plan:
                    type: string
                    enum:
                    - free
                    - paid
                    description: Current billing plan
                  credit_balance:
                    type: number
                    description: Current credit balance available for API calls
                  api_keys:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: Unique API key identifier
                        label:
                          type: string
                          description: Human-readable label for the key
                        prefix:
                          type: string
                          description: First 8 characters of the key for identification
                        rate_limit:
                          type: number
                          description: Requests per minute allowed for this key
                        is_active:
                          type: boolean
                          description: Whether the key is currently active
                        created_at:
                          description: When the key was created
                          type: string
                          format: date-time
                      required:
                      - id
                      - label
                      - prefix
                      - rate_limit
                      - is_active
                      - created_at
                      additionalProperties: false
                    description: All API keys associated with this account
                  created_at:
                    description: When the account was created
                    type: string
                    format: date-time
                required:
                - id
                - email
                - email_verified
                - plan
                - credit_balance
                - api_keys
                - created_at
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
        '409':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    servers:
    - url: https://api.bizverify.co
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/account/usage:
    get:
      operationId: getUsageStats
      tags:
      - Account
      description: Get API usage statistics for your account, broken down by day, endpoint, and jurisdiction. Useful for monitoring consumption and identifying usage patterns.
      parameters:
      - schema:
          default: 30
          type: integer
          minimum: 1
          maximum: 90
        in: query
        name: days
        required: false
        description: Number of days to look back (default 30, max 90)
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema: {}
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    servers:
    - url: https://api.bizverify.co
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/account/data-export:
    get:
      operationId: getDataExport
      tags:
      - Account
      description: Export all your account data including profile, API keys, credit transactions, verification jobs, and usage statistics (GDPR right to data portability).
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema: {}
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    servers:
    - url: https://api.bizverify.co
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/account/keys:
    post:
      operationId: createApiKey
      tags:
      - Account
      description: Create a new API key with a descriptive label. The full key is returned only once — store it securely. You can create multiple keys for different environments or integrations.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                label:
                  type: string
                  minLength: 1
                  maxLength: 100
                  description: A descriptive label for the API key, e.g. "Production" or "CI/CD"
              required:
              - label
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '201':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  id:
                    type: string
                    description: Unique key identifier
                  key:
                    type: string
                    description: The full API key. Store securely — it will not be shown again.
                  prefix:
                    type: string
                    description: First 8 characters of the key for identification
                  label:
                    type: string
                    description: The label you provided
                  message:
                    type: string
                    description: Reminder to store the key securely
                required:
                - id
                - key
                - prefix
                - label
                - message
                additionalProperties: false
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    servers:
    - url: https://api.bizverify.co
      description: Base URL declared by the provider in apis.yml (roadmap#122).
  /v1/account/keys/{keyId}:
    delete:
      operationId: revokeApiKey
      tags:
      - Account
      description: Revoke an API key immediately. The key will no longer authenticate requests. This action is irreversible.
      parameters:
      - schema:
          type: string
        in: path
        name: keyId
        required: true
        description: The API key ID to revoke
      security:
      - apiKey: []
      - bearerAuth: []
      responses:
        '204':
          description: Key revoked
        '401':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
        '403':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
        '404':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: object
                    properties:
                      code:
                        type: string
                      message:
                        type: string
                      details: {}
                      suggestion:
                        type: string
                    required:
                    - code
                    - message
                    additionalProperties: false
                required:
                - error
                additionalProperties: false
    servers:
    - url: https://api.bizverify.co
      description: Base URL declared by the provider in apis.yml (roadmap#122).
components:
  securitySchemes:
    apiKey:
      type: apiKey
      name: X-API-Key
      in: header
      description: API key authentication. Obtain a key via POST /v1/auth/request-access and POST /v1/auth/verify-access.
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: OAuth
      description: OAuth 2.1 Bearer token. Obtain via the /oauth/authorize flow.
x-refined-from:
- bizverify-account-api-openapi.yml
- bizverify-openapi.json