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

# Web3AuthResponse Schema

> Successful SIWE verification response for an existing wallet account. Includes route metadata, schemas, examples, and implementation notes.

Source OpenAPI: 0xArchive API 1.6.1; 147 paths; 128 component schemas.

Successful SIWE verification response for an existing wallet account. The route also sets auth cookies for browser/session flows.

## Required Fields

| Field         | Type    | Description                                 |
| ------------- | ------- | ------------------------------------------- |
| `is_new_user` | boolean | Always false.                               |
| `success`     | boolean | Defined by the generated JSON Schema block. |
| `user`        | object  | Defined by the generated JSON Schema block. |

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Web3AuthResponse",
  "description": "Successful SIWE verification response for an existing wallet account. The route also sets auth cookies for browser/session flows.",
  "type": "object",
  "required": [
    "is_new_user",
    "success",
    "user"
  ],
  "properties": {
    "is_new_user": {
      "description": "Always false. SIWE verification does not create wallet accounts.",
      "type": "boolean",
      "enum": [
        false
      ],
      "example": false
    },
    "success": {
      "type": "boolean",
      "example": true
    },
    "user": {
      "type": "object",
      "required": [
        "email",
        "id",
        "tier",
        "wallet_address"
      ],
      "properties": {
        "email": {
          "description": "Account email associated with the wallet user.",
          "type": "string"
        },
        "id": {
          "type": "string",
          "format": "uuid"
        },
        "tier": {
          "description": "Current subscription tier.",
          "type": "string",
          "example": "free"
        },
        "wallet_address": {
          "description": "Authenticated wallet address.",
          "type": "string",
          "example": "0x742d35cc6634c0532925a3b844bc9e7595f2bd18"
        }
      }
    }
  }
}
```

## Referenced By

* [POST /v1/auth/web3/verify](/schemas/operations/web3-verify)
