# DEX abstraction state

> HyperCore private-preview documentation.

> For the complete documentation index, see [llms.txt](/docs/llms.txt).

<Callout intent="info">
  This API is in private preview. Target October 2026; timing is subject to change.
</Callout>


# DEX abstraction state

Returns whether a user has enabled HIP-3 DEX abstraction.


<Note>

  **Available now.** This read is served at the interim endpoint today.

</Note>

## Request

`POST /{apiKey}/info`

| Parameter | Type   | Required | Description                    |
| --------- | ------ | -------- | ------------------------------ |
| `type`    | string | Yes      | Selects `userDexAbstraction`.  |
| `user`    | string | Yes      | Master or sub-account address. |

```json
{
  "type": "userDexAbstraction",
  "user": "0x0000000000000000000000000000000000000000"
}
```

## Response fields

| Field      | Type            | Description                                                                                          |
| ---------- | --------------- | ---------------------------------------------------------------------------------------------------- |
| `Response` | boolean \| null | `true` when DEX abstraction is enabled; the native API can return `null` when no state is available. |

## Response example

<Tabs>
<Tab title="Enabled">

```json
true
```

</Tab>
<Tab title="No state">

```json
null
```

</Tab>
</Tabs>