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

# VyResult

> The result shape.

```ts theme={null}
interface VyResult {
  token: string | null;  // vyt; send to your server
  verified: boolean;     // vyc === "1"; UI hint only
  vyc: string | null;    // "1" | "0" | null
}
```

`token` is the only field your server needs. `verified` and `vyc` are what the browser saw; never gate on them.
