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

# Get Reviewer Details

> Fetch the reviewer details stored for a verification session.

<Note>No authentication required for this endpoint.</Note>

## Path Parameters

<ParamField path="recordVerificationId" type="string" required>
  The verification session ID to look up.
</ParamField>

## Error Codes

| Code                      | HTTP | Description                                |
| ------------------------- | ---- | ------------------------------------------ |
| `MISSING_VERIFICATION_ID` | 400  | Path parameter is missing                  |
| `NOT_FOUND`               | 404  | No reviewer details found for this session |
| `INTERNAL_ERROR`          | 500  | Unexpected server error                    |

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.yourservice.com/api/v1/storereviewerdetails/ver_live_abc123
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "success": true,
    "data": {
      "recordVerificationId": "ver_live_abc123",
      "name": "Priya Sharma",
      "email": "priya.sharma@techcorp.com",
      "company": "TechCorp",
      "website": "https://techcorp.com"
    }
  }
  ```
</ResponseExample>
