About this endpoint
What it does
Submits a job to detect email addresses from the provided content and returns identifiers you can use to check the job later. The endpoint starts processing asynchronously and does not return the detected emails directly.
Request Body
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| content | String | Yes | Provide the content from where email addresses needs to be detected. |
Response
Returns a JSON object with a job_id string field and a status_url string field. Use job_id to identify the submitted asynchronous job, and status_url to check its status.
Success response: 200
| Parameter | Type | Mandatory | Description |
|---|---|---|---|
| job_id | String | Yes | Identifier of the submitted asynchronous job. Format: UUID. |
| status_url | String | Yes | URL used to check the submitted job status. Format: URI. |
Notes
This endpoint kicks off an async job and returns immediately with a job identifier; the actual work runs in the background. Pair this call with the corresponding job_check endpoint — poll that until the status reaches a terminal state to retrieve the result. Extract the job identifier from job_id.