---
title: Detect Email Address API
slug: detect-email-addresses
url: https://apyhub.com/sharpapi/service/detect-email-addresses
provider: SharpAPI
categories: [Data Extraction, Data Validation, Developer Tools]
tags: [content, detect, text, email]
auth: api_key
---

# Detect Email Address API

Extract email addresses from text with an async job flow. Submit content, then poll for a result array of detected email strings.

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/sharpapi/api/v1/content/detect_emails` | What it does Submits an asynchronous job to detect email addresses from the provided content. The r… | 50 |
| GET | `/sharpapi/api/v1/content/detect_emails/job/status/:job_id` | What it does Retrieves the current status of a Detect Emails job by its job ID. The response return… | 1 |

## About

## What it does
Email Address Detection scans a block of text and returns any email addresses it finds. Send the content in `body.content`, get back a `job_id` and `status_url` for the asynchronous job, then poll the job status endpoint with the job ID.

Use Email Address Detection when you need to pull contact addresses out of raw text from support tickets, lead notes, scraped pages, documents, or chat logs. It is useful when you already have unstructured content and need to isolate email addresses without building your own pattern-matching logic.

The status response returns a `data` object with `id`, `type`, and `attributes`. Inside `attributes`, you can read the job `type`, `status`, and `result`, where `result` is an array of strings containing the detected email addresses.

This service is a good fit for workflows that normalize inbound text before enrichment, CRM import, or validation steps. It gives you a simple async flow: submit content, check status, and read the extracted email list when the job completes.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyhub.com/sharpapi/service/detect-email-addresses
