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

# Get User Trading Variables

> Returns user-specific trading variables, pending market orders, fee tiers, and price impact data.

### Endpoint

`GET /user-trading-variables/{address}`

Returns user-specific trading variables, pending market orders, fee tiers, and price impact data.

### Parameters

| Parameter | Location | Required | Type   | Description            |
| --------- | -------- | -------- | ------ | ---------------------- |
| `address` | path     | Yes      | string | Trader wallet address. |

### Usage Example

```bash theme={null}
curl -X GET "https://backend-arbitrum.gains.trade/user-trading-variables/0x0000000000000000000000000000000000000000"
```

### Response Structure

The generated API panel lists the response schema for status codes: 200. Error responses generally return an `error` or `message` field.


## OpenAPI

````yaml get /user-trading-variables/{address}
openapi: 3.0.3
info:
  title: Gains Network Backend API
  version: 1.0.0
  description: >-
    OpenAPI reference for Gains Network backend-global and public chain-specific
    trading backend endpoints.
servers:
  - url: https://backend-global.gains.trade
    description: Backend Global API
  - url: https://backend-arbitrum.gains.trade
    description: Arbitrum trading backend
  - url: https://backend-base.gains.trade
    description: Base trading backend
  - url: https://backend-polygon.gains.trade
    description: Polygon trading backend
  - url: https://backend-sepolia.gains.trade
    description: Arbitrum Sepolia trading backend
  - url: http://localhost:3002
    description: Local backend-global development server
security: []
tags:
  - name: Health
  - name: Stats
  - name: APR
  - name: Trading History
  - name: Personal Trading History
  - name: Leaderboard
  - name: Holding Rates
  - name: Contests
  - name: Dapp
  - name: Wallet
  - name: Circle
  - name: Solana
  - name: Transak
  - name: Bridge
  - name: Campaigns
  - name: VIP
  - name: Notifications
  - name: Referrals
  - name: Trading Backend
  - name: Legacy Contests
  - name: Rewards
paths:
  /user-trading-variables/{address}:
    get:
      tags:
        - Trading Backend
      summary: Get User Trading Variables
      description: >-
        Returns user-specific trading variables, pending market orders, fee
        tiers, and price impact data.
      operationId: get_core-user-trading-variables
      parameters:
        - name: address
          in: path
          required: true
          schema:
            type: string
          description: Trader wallet address.
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true

````