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

# userMarketDeployers: List Enrolled Market Deployers

> Retrieve the list of market deployer IDs your account is currently enrolled in, so you can verify access before trading or transferring collateral.

The `userMarketDeployers` query returns the list of market deployer IDs your account is enrolled in. Use this to verify enrollment before attempting to trade or transfer collateral in a deployer — operations against a deployer you are not enrolled in will be rejected. If the returned list is empty or missing the expected deployer ID, complete enrollment before proceeding.

## Request

```json theme={"system"}
{"type": "userMarketDeployers", "accountId": "5"}
```

<ParamField body="type" type="string" required>
  Must be `"userMarketDeployers"`.
</ParamField>

<ParamField body="accountId" type="string" required>
  Your account ID, obtained from the `registerAccount` action.
</ParamField>

## Response

```json theme={"system"}
{
  "type": "userMarketDeployers",
  "accountId": "5",
  "marketDeployerIds": [1]
}
```

<ResponseField name="marketDeployerIds" type="integer[]">
  Array of market deployer IDs your account is currently enrolled in. An empty array means your account has not been enrolled in any deployer yet.
</ResponseField>
