> ## Documentation Index
> Fetch the complete documentation index at: https://velt.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Email Verification Status

Use this API to check whether a given email address has been verified for workspace ownership.

<Note>
  If the email has just been verified, this API also reactivates any API keys that were expired due to the email not being verified.
</Note>

<Info>
  This is a **public endpoint** — no authentication headers are required.
</Info>

# Endpoint

`POST https://api.velt.dev/v2/workspace/email/status`

# Body

#### Params

<ParamField body="data" type="object" required>
  <Expandable title="properties">
    <ParamField body="ownerEmail" type="string" required>
      Email address to check verification status for.
    </ParamField>
  </Expandable>
</ParamField>

# Example Request

```JSON theme={null}
{
  "data": {
    "ownerEmail": "owner@example.com"
  }
}
```

# Example Response

#### Success Response (verified)

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Email verified and workspace reactivated",
    "data": {
      "verified": true
    }
  }
}
```

#### Success Response (not yet verified)

```JSON theme={null}
{
  "result": {
    "status": "success",
    "message": "Email not yet verified",
    "data": {
      "verified": false
    }
  }
}
```

#### Failure Response

##### If no workspace exists for the email

```JSON theme={null}
{
  "error": {
    "status": "NOT_FOUND",
    "message": "User not found"
  }
}
```

##### If rate limit exceeded

```JSON theme={null}
{
  "error": {
    "status": "RESOURCE_EXHAUSTED",
    "message": "Rate limit exceeded for this endpoint. Try again later."
  }
}
```

##### If the status check fails

```JSON theme={null}
{
  "error": {
    "status": "INTERNAL",
    "message": "Failed to verify email status"
  }
}
```

<ResponseExample>
  ```js theme={null}
  {
    "result": {
      "status": "success",
      "message": "Email verified and workspace reactivated",
      "data": {
        "verified": true
      }
    }
  }
  ```
</ResponseExample>
