NeverBounce Account API

Account credit balances and job counts by state.

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

neverbounce-account-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: NeverBounce Account API
  version: '4.2'
  description: Account information and remaining credits. Part of the NeverBounce v4 email verification
    API. Harvested from the OpenAPI definition NeverBounce publishes behind its interactive API reference
    at developers.neverbounce.com (ReadMe API Designer definition `neverbounce-api.json`).
  contact:
    name: NeverBounce Support
    email: support@neverbounce.com
    url: https://developers.neverbounce.com/
servers:
- url: https://api.neverbounce.com/v4.2
security:
- sec0: []
tags:
- name: Account
  description: Account information and remaining credits
paths:
  /account/info:
    get:
      summary: /info
      description: ''
      operationId: account-info
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value: "{\n    \"status\": \"success\",\n    \"credits_info\": {\n        \"paid_credits_used\"\
                    : 0,\n        \"free_credits_used\": 0,\n        \"paid_credits_remaining\": 9950791,\n\
                    \        \"free_credits_remaining\": 0\n    },\n    \"job_counts\": {\n        \"\
                    completed\": 409,\n        \"under_review\": 0,\n        \"queued\": 0,\n        \"\
                    processing\": 0\n    },\n    \"execution_time\": 896\n}"
              schema:
                type: object
                properties:
                  status:
                    type: string
                    example: success
                  credits_info:
                    type: object
                    properties:
                      paid_credits_used:
                        type: integer
                        example: 0
                        default: 0
                      free_credits_used:
                        type: integer
                        example: 0
                        default: 0
                      paid_credits_remaining:
                        type: integer
                        example: 9950791
                        default: 0
                      free_credits_remaining:
                        type: integer
                        example: 0
                        default: 0
                  job_counts:
                    type: object
                    properties:
                      completed:
                        type: integer
                        example: 409
                        default: 0
                      under_review:
                        type: integer
                        example: 0
                        default: 0
                      queued:
                        type: integer
                        example: 0
                        default: 0
                      processing:
                        type: integer
                        example: 0
                        default: 0
                  execution_time:
                    type: integer
                    example: 896
                    default: 0
        '400':
          description: '400'
          content:
            application/json:
              examples:
                Result:
                  value: '{}'
              schema:
                type: object
                properties: {}
      deprecated: false
      x-readme:
        code-samples:
        - language: curl
          code: "curl --request GET\\\n  --url 'https://api.neverbounce.com/v4.2/account/info?key={api_key}'"
        - language: php
          code: '<?php


            // Set API key

            \NeverBounce\Auth::setApiKey($api_key);


            // Make request for API info

            $info = \NeverBounce\Account::info();'
        - language: javascript
          code: "// Initialize NeverBounce client\nconst client = new NeverBounce({apiKey: myApiKey});\n\
            \n// Get account info\nclient.account.info().then(\n    resp => // Handle successful response\n\
            \    err => // Handle error response\n);"
          name: NodeJS
        - language: python
          code: 'import neverbounce_sdk


            # Create sdk client

            client = neverbounce_sdk.client(api_key=''api_key'')


            # Get account info

            info = client.account_info();'
        - language: go
          code: '// Instantiate wrapper

            client := neverbounce.New("api_key")


            // Get account info

            accountInfo, err := client.Account.Info()'
        - language: ruby
          code: '# Instantiate API client

            client = NeverBounce::API::Client.new(api_key: "api_key")


            # Get account info

            resp = client.account_info'
        - language: csharp
          code: '// Create SDK object

            var sdk = new NeverBounceSdk("api_key");


            // Get account info

            AccountInfoResponseModel resp = await sdk.Account.Info();'
          name: .NET
        - language: java
          code: '// Instantiate Client

            NeverbounceClient neverbounceClient = NeverbounceClientFactory.create(apiKey);


            // Make Request

            AccountInfoResponse accountInfoResponse = neverbounceClient.createAccountInfoRequest().execute();'
        samples-languages:
        - curl
        - php
        - javascript
        - python
        - go
        - ruby
        - csharp
        - java
      tags:
      - Account
components:
  securitySchemes:
    sec0:
      type: apiKey
      in: query
      name: key