Easy2257
API Reference

Check Performer

POST /api/v1/talent/check: look up verification status for a creator you provisioned.

Scoped to your own creators, by design. Any address you did not provision returns found: false, including creators verified through another platform. The endpoint cannot be used to discover whether an arbitrary email has an Easy2257 account, and it returns no name, no date of birth, and no ID.

POST
/api/v1/talent/check

Authorization

BearerAuth
AuthorizationBearer <token>

Partner API key from partner.easy2257.com/api-keys. Only ez_live_ keys are accepted. A key beginning with ez_test_ is rejected with 403 and code TEST_MODE_UNAVAILABLE before any handler runs: there is no sandbox, and every handler writes production records, provisions real users, and sends real email. New partner accounts start with a test key, so create a live key before your first call.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://easy2257.com/api/v1/talent/check" \  -H "Content-Type: application/json" \  -d '{    "email": "creator@example.com"  }'
{
  "found": true,
  "verified": true,
  "lastVerifiedAt": "2026-04-01"
}
{
  "error": "email, externalUserId, and callbackUrl are required",
  "code": "missing_parameter",
  "field": "contentType"
}
{
  "error": "email, externalUserId, and callbackUrl are required",
  "code": "missing_parameter",
  "field": "contentType"
}
{
  "error": "email, externalUserId, and callbackUrl are required",
  "code": "missing_parameter",
  "field": "contentType"
}
{
  "error": "Too many requests. Please slow down.",
  "retryAfter": 14,
  "limit": 60,
  "remaining": 0,
  "reset": 1714000060000
}
{
  "error": "email, externalUserId, and callbackUrl are required",
  "code": "missing_parameter",
  "field": "contentType"
}