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

# Get User-Specific Pool Trades

> Gets the latest trades for a specific token, pool, and wallet address



## OpenAPI

````yaml /data-api/openapi.json get /trades/{tokenAddress}/{poolAddress}/{owner}
openapi: 3.1.0
info:
  title: Solana Tracker Data API
  description: >-
    The Solana Tracker API gives you powerful, real-time access to the Solana
    ecosystem with comprehensive data endpoints for token data, market metrics,
    price analysis, transactions, wallet tracking, chart visualization, and
    profit analytics.
  version: 1.0.0
  contact:
    email: contact@solanatracker.io
servers:
  - url: https://data.solanatracker.io
    description: Production server
security:
  - apiKey: []
paths:
  /trades/{tokenAddress}/{poolAddress}/{owner}:
    get:
      tags:
        - Trades
      summary: Get User-Specific Pool Trades
      description: Gets the latest trades for a specific token, pool, and wallet address
      parameters:
        - name: tokenAddress
          in: path
          required: true
          schema:
            type: string
        - name: poolAddress
          in: path
          required: true
          schema:
            type: string
        - name: owner
          in: path
          required: true
          schema:
            type: string
        - name: cursor
          in: query
          description: Cursor for pagination
          schema:
            type: string
        - name: showMeta
          in: query
          description: Set to 'true' to add metadata for from and to tokens
          schema:
            type: boolean
        - name: parseJupiter
          in: query
          description: >-
            Set to 'true' to combine all transfers within a Jupiter swap into a
            single transaction
          schema:
            type: boolean
        - name: hideArb
          in: query
          description: >-
            Set to 'true' to hide arbitrage or other transactions that don't
            match token parameters
          schema:
            type: boolean
        - name: sortDirection
          in: query
          description: Sort direction by descending (DESC) or ascending (ASC) order
          schema:
            type: string
            default: DESC
            enum:
              - DESC
              - ASC
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TokenTradesResponse'
components:
  schemas:
    TokenTradesResponse:
      type: object
      properties:
        trades:
          type: array
          items:
            $ref: '#/components/schemas/TokenTrade'
        nextCursor:
          type: integer
        hasNextPage:
          type: boolean
    TokenTrade:
      type: object
      properties:
        tx:
          type: string
        amount:
          type: number
        priceUsd:
          type: number
        volume:
          type: number
        volumeSol:
          type: number
        type:
          type: string
          enum:
            - buy
            - sell
        wallet:
          type: string
        time:
          type: integer
        program:
          type: string
        pools:
          type: array
          items:
            type: string
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: API Key for authentication

````