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

# Get deposit information

> Returns your Steam inventory for that game with `depositkey` maps per asset id, pricing hints, and optional high-stock fields. Each depositkey is validated server-side when submitting POST /deposit/trade.

**Permission:** Connected + API.



## OpenAPI

````yaml /openapi.json get /deposit/{game}
openapi: 3.1.0
info:
  title: Mannco.store API
  description: >-
    Complete API documentation for Mannco.store - Buy and sell TF2, CS:GO, Dota
    2, Rust and Steam community items. All routes use the `api` filter. Every
    endpoint requires an `Authorization: Bearer <jwt>` token obtained from POST
    /user/login. The only exception is the login endpoint itself, which is used
    to obtain the token.
  version: 1.0.0
servers:
  - url: https://api.mannco.store
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Auth
    description: Authentication and login
  - name: Items
    description: Item details, listings, pricing, and sales graphs
  - name: Offers
    description: Create, manage, and respond to trade offers
  - name: Buy Orders
    description: Create, update, and manage buy orders
  - name: Payment
    description: Checkout sessions for balance and cart payments
  - name: Inventory
    description: 'Manage user inventory: list, price, and withdraw'
  - name: Cart
    description: Manage the shopping cart
  - name: Listing
    description: Deposit Steam items and instant sell
  - name: Trading
    description: Active and historical trades
  - name: User Account
    description: Account, balance, sessions, and history
paths:
  /deposit/{game}:
    get:
      tags:
        - Listing
      summary: Get deposit information
      description: >-
        Returns your Steam inventory for that game with `depositkey` maps per
        asset id, pricing hints, and optional high-stock fields. Each depositkey
        is validated server-side when submitting POST /deposit/trade.


        **Permission:** Connected + API.
      operationId: getDepositInformation
      parameters:
        - name: game
          in: path
          required: true
          description: 'Game id: 440, 730, 570, 252490, 753'
          schema:
            type: integer
      responses:
        '200':
          description: Deposit inventory
          content:
            application/json:
              example:
                err: false
                success: true
                content:
                  informations:
                    - assetid: 123456789;987654321
                      count: 2
                      market_hash_name: Unusual Burning Flames Team Captain
                      item_id: 5678
                      depositkey:
                        '123456789': a1b2c3d4e5f6...
              schema:
                allOf:
                  - $ref: '#/components/schemas/ApiError'
                  - type: object
                    properties:
                      content:
                        type: object
                        properties:
                          informations:
                            type: array
                            items:
                              $ref: '#/components/schemas/DepositRow'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/ServerError'
components:
  schemas:
    ApiError:
      type: object
      description: >-
        Standard Mannco.store response envelope. `err` and `success` flag the
        outcome; the payload (or error message) is always under `content`.
      required:
        - err
        - success
      properties:
        err:
          type: boolean
          description: True when the request failed.
        success:
          type: boolean
          description: True when the request succeeded.
        content:
          description: Payload on success, or an error message/object on failure.
    DepositRow:
      type: object
      description: A depositable inventory entry with its server-issued deposit key(s).
      properties:
        assetid:
          type: string
          description: Semicolon-separated Steam asset IDs.
        count:
          type: integer
        market_hash_name:
          type: string
        item_id:
          type: integer
        depositkey:
          type: object
          description: Map of asset ID to its deposit key.
          additionalProperties:
            type: string
  responses:
    Forbidden:
      description: >-
        Forbidden. Missing/invalid JWT, blocked country, or insufficient
        permissions.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          example:
            err: true
            success: false
            content: forbidden
    NotFound:
      description: The requested resource was not found.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          example:
            err: true
            success: false
            content: Not found
    ServerError:
      description: Internal server error.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ApiError'
          example:
            err: true
            success: false
            content: Internal server error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: JWT obtained from POST /user/login

````