Get Email by ID

get/v1/emails/{email_id}

Fetches a single email resource by id. Read-only; no side effects. 404 when not found in the caller's workspace.

Requires a bearer token: Authorization: Bearer <token>.

Path parameters

NameTypeRequiredDescription
email_idstring <uuid>YesPublic UUID of the email.e.g. e6f7a8b9-0c1d-42e3-94f5-a6b7c8d9e0f1

Request

cURL
curl -X GET https://api.wellapp.ai/v1/emails/{email_id} \
  -H "Authorization: Bearer $WELL_API_TOKEN"

Responses

200The email resource.

{
  "data": {
    "type": "email",
    "id": "e6f7a8b9-0c1d-42e3-94f5-a6b7c8d9e0f1",
    "attributes": {
      "value": "remy@foldspace.ai",
      "created_at": "2026-01-12T09:31:05.000Z",
      "updated_at": null
    },
    "relationships": {
      "company_emails": {
        "data": [
          {
            "type": "company_email",
            "id": "00000000-0000-4000-8000-000000000001"
          }
        ]
      },
      "person_emails": {
        "data": [
          {
            "type": "person_email",
            "id": "00000000-0000-4000-8000-000000000001"
          }
        ]
      }
    }
  }
}

401Unauthorized

{
  "code": "UNAUTHORIZED",
  "status": 401,
  "title": "Unauthorized",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

403Forbidden

{
  "code": "FORBIDDEN",
  "status": 403,
  "title": "Forbidden",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}

404Not Found

{
  "code": "NOT_FOUND",
  "status": 404,
  "title": "Not Found",
  "message": "See title.",
  "meta": {
    "trace_id": "a1b2c3",
    "log_id": "a1b2c3"
  }
}