Recruspace
  1. Endpoints
Recruspace
  • Welcome
  • Get API Key
  • Authentication
  • Rate Limit
  • Pagination
  • Endpoints
    • Get Candidate
      GET
    • Create Candidate
      POST
    • Add Note to Candidate
      POST
    • Add Tag to Candidate
      POST
    • Add Candidate to Job Post or Talent Pool
      POST
    • Search Candidate by Email
      GET
    • List Company Offices
      GET
    • List Company Users
      GET
    • List Job Posts
      GET
    • Get Job Post
      GET
    • Apply to Job Post
      POST
    • List Job Post Questions
      GET
    • List Talent Pools
      GET
    • Update Talent Pool
      PATCH
    • Delete Talent Pool
      DELETE
    • List Talent Pool Candidates
      GET
    • Create Talent Pool
      POST
    • Upload File
      POST
  1. Endpoints

Search Candidate by Email

GET
/api/v1/client/candidates/search-by-email/
Last modified:2025-12-30 13:07:46
Searches for candidates by email address within the authenticated company.
Arguments
email (string, as query parameter, required) : The email address to search for. Supports partial matching.
Example: email=john@example.com
Returns
200 OK : An array of matching candidates, each containing the candidate ID and email.
Example Response:
[
  {"id": 123, "email": "john@example.com"},
  {"id": 456, "email": "john.doe@example.com"}
]
400 Bad Request : If the email parameter is not provided.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Query Params

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.recruspace.com/api/v1/client/candidates/search-by-email/?email' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": 0,
        "email": "user@example.com"
    }
]
Modified at 2025-12-30 13:07:46
Previous
Add Candidate to Job Post or Talent Pool
Next
List Company Offices
Built with