Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Data Enrichment / Kickbox Email Verification API
Kickbox Email Verification API logo

Kickbox Email Verification API

Agent-ready OpenAPI document · curated by JenticData EnrichmentContact EnrichmentapiKey5 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Verify email addresses one at a time or in batches, detect disposable mailboxes, and check the verification credit balance on a Kickbox account.

Use for: Verify whether an email address is deliverable, Check if an email address is a disposable mailbox, Submit a list of 50,000 addresses for batch verification, Get the status of a Kickbox batch verification job

Not supported: Does not send email, manage marketing lists, or score sender reputation - use for verifying email address deliverability and disposable status only.

Jentic publishes the only available OpenAPI specification for Kickbox Email Verification API, keeping it validated and agent-ready. Kickbox verifies single addresses or whole lists, flags disposable mailboxes, and reports the credit balance left on an account. The single-address endpoint returns deliverability, role, free-mailbox, and disposable signals in one call, while the batch endpoint accepts large CSV-style lists and exposes a status endpoint to poll progress. Agents can use it to clean address lists before sending email or to validate an address inline at signup.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Kickbox Email Verification API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Kickbox Email Verification API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkickbox.com%2Fkickbox" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fkickbox.com%2Fkickbox" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with Kickbox Email Verification API.

Verify a single email address and return deliverability, role-account, and free-mailbox flags

Submit a batch verification job covering thousands of addresses in one upload

Poll a batch job's status until results are ready for download

Detect disposable email addresses to block throwaway signups

Read the remaining verification credit balance on a Kickbox account

Use Cases

Patterns agents use Kickbox Email Verification API for, with concrete tasks.

★ Inline signup validation

Block invalid and disposable addresses at the moment a user signs up by calling GET /verify with the submitted email. The response includes a deliverability verdict and a disposable flag, so the form can show an inline error before account creation. Verification typically completes in well under a second per address.

Call GET /verify with the user's email and reject the signup if the result is undeliverable or disposable.

List cleaning before a campaign

Marketing operations teams can upload a list of addresses to POST /verify-batch before sending a campaign, then poll GET /verify-batch/{id} until the job completes. The cleaned list reduces bounce rates and protects the sending domain's reputation, and Kickbox bills only the credits consumed.

POST a list of 25,000 addresses to /verify-batch, poll /verify-batch/{id} every 30 seconds, and download the cleaned list when status is complete.

Disposable address screening for fraud prevention

Trust and safety teams can call GET /disposable/{email} to flag throwaway addresses that are correlated with fraudulent signups. The endpoint returns a single boolean signal that fits cleanly into a fraud-scoring pipeline.

Call GET /disposable/{email} and add 30 points to the fraud risk score when the disposable flag is true.

Agent integration via Jentic

An onboarding agent can use Jentic to discover the Kickbox verify operation, load the schema, and execute it with a vaulted API key, returning a structured deliverability verdict the rest of the workflow can branch on.

Search Jentic for 'verify an email address with Kickbox', load GET /verify, and execute it with the user's submitted address.

Key Endpoints

5 endpoints — jentic publishes the only available openapi specification for kickbox email verification api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/verify

Verify a single email address

POST

/verify-batch

Submit a batch verification job

GET

/verify-batch/{id}

Check batch job status

GET

/balance

Read remaining credit balance

GET

/disposable/{email}

Check whether an address is disposable

GET

/verify

Verify a single email address

POST

/verify-batch

Submit a batch verification job

GET

/verify-batch/{id}

Check batch job status

GET

/balance

Read remaining credit balance

GET

/disposable/{email}

Check whether an address is disposable

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Kickbox by hand means passing its apikey query parameter, handling the api.kickbox.com host, and polling batch jobs yourself. Through Jentic you install once, import Kickbox from the API Directory, store the key once, and your agent calls it.

Permission scoping

Permission scoping

The Kickbox email to verify travels in the request, not as a URL path resource, so scope by operation: limit the agent to the operations it needs, such as verifying a single address or checking the disposable status, and leave batch submission or balance reads out unless you add them.

Credential management

Credential isolation

Your Kickbox API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'verify this email address' or 'check if an email is disposable', and Jentic returns the matching Kickbox operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

NeverBounce API

→

NeverBounce offers similar single and bulk verification with comparable per-address pricing

Choose NeverBounce when an existing NeverBounce credit pool is available or when its verification verdict semantics match the workflow better

Alternative

Emailable API

→

Emailable provides single and batch email verification with deliverability and disposable checks

Choose Emailable when the workflow already uses Emailable for list hygiene or its dashboard

Complementary

Hunter API

→

Hunter finds and verifies email addresses by domain and person name

Pair with Kickbox when the agent first needs to discover an address and then confirm it is deliverable before sending

Complementary

Mailchimp Marketing API

→

Mailchimp sends the campaigns that benefit from a Kickbox-cleaned list

Use after Kickbox to push the cleaned addresses into a Mailchimp audience and trigger a campaign

FAQs

Specific to using Kickbox Email Verification API through Jentic.

Why is there no official OpenAPI spec for Kickbox Email Verification API?

Kickbox does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Kickbox Email Verification API via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Kickbox Email Verification API use?

Kickbox authenticates by appending an apikey query parameter to every request. Jentic stores that key in its vault and injects it at execution time, so the agent never holds the raw key in its prompt or logs.

Can I run a batch verification job with the Kickbox Email Verification API?

Yes. POST a list of addresses to /verify-batch to start a job, then poll GET /verify-batch/{id} to retrieve status and the result download URL when the job is complete.

What are the rate limits for the Kickbox Email Verification API?

The OpenAPI specification does not declare explicit rate limits. Kickbox bills per verification credit, so use GET /balance to track consumption and back off batch submissions if the balance drops below your safety threshold.

How do I verify an email with the Kickbox Email Verification API through Jentic?

Run pip install jentic, search Jentic for 'verify an email address with Kickbox', load the GET /verify operation, and execute it with the address. Jentic supplies the apikey query parameter from the vault and returns the deliverability verdict as a structured response.

Can I limit what my agent is allowed to do with the Kickbox Email Verification API?

Yes. Because Jentic One runs self-hosted, you decide which Kickbox operations your agent can call, and your own rules are enforced at execution time. Since the email to verify travels in the request body rather than a URL path, you scope by operation: grant only the calls the agent needs, such as verifying a single address with GET /verify or checking disposable status with GET /disposable/{email}, while leaving batch submission via POST /verify-batch and balance reads via GET /balance out unless you add them. Your Kickbox API key stays with your own instance and is injected at call time, so the agent can only reach the operations you have approved.

GET STARTED

Start building with Kickbox Email Verification API

Explore with Jentic One
View OpenAPI Document