# Returns a list of all the sell orders executed by the user **GET /sell-orders** Returns a list of all the orders executed by the user ## Servers - Sandbox Server: https://ramp-api.dev.stably.io/public/api/v1 (Sandbox Server) - Production Server: https://ramp-api.prod.stably.io/public/api/v1 (Production Server) ## Parameters ### Query parameters - **start** (string) The start date of the dataset. This is inclusive of orders created at this exact date should be included. - **end** (string) The end date of the dataset. This is inclusive of orders created at this exact date should be included. - **skip** (integer) The number of orders to skip in dataset. - **limit** (integer) The number of orders to return in dataset. ## Responses ### 200 Successful operation #### Body: application/json (array[object]) - **id** (string) - **userId** (string) An identifier that is the same for all orders of the same user. No personally identifiable information is required, the ID doesn't need to be a username or an email. - **link** (string) An URI pointing to a Provider webpage displaying the order details. This webpage may require the user to login. - **crypto** (object) - **fiatAmountOutUsd** (string) - **fiat** (string) The ISO 4217 code of the fiat currency used to pay for the order. - **payment** (string) The payment method used to buy the crypto. The ID defined in the configuration. - **providerPayment** (string) A provider-defined payment method, providing more details than the payment field. For example, if a VISA credit card was used with with the "debit-credit-card" payment method, this field may contain "VISA". - **cryptoAmountIn** (string) The amount of crypto sent or to be sent by the user. - **fiatAmountOut** (string) The amount of fiat actually sent to the user fiat account. - **exchangeRate** (string) The exchange rate used to get the amount of fiat - **processingFees** (array[object]) - **partnerFees** (array[object]) - **createdAt** (string) - **updatedAt** (string) - **transactionHash** (string) The hash of the transaction transfering the crypto to Stably Ramp wallet. This transaction is initiated by the user. - **walletAddress** (string) The wallet address of the user, used to send crypto to Stably Ramp. - **providerWalletAddress** (string) The wallet address of Stably Ramp, where the crypto must be sent. - **status** (string) The status of the order. Pending orders are periodically polled by StablyRamp. Completed, failed or cancelled orders are never polled again once StablyRamp detects one of these statuses - **statusCode** (string) If applicable, a code defined by Stably Ramp, providing more details than the StablyRamp-defined status field. - **statusReason** (string) If applicable, information explaining how the order has its current status. - **partnerAccountId** (string) An value identifying Consensys/StablyRamp as the partner associated with the transaction ### 400 An unexpected error #### Body: application/json (object) - **error** (string) A description of the unexpected error. - **code** (integer) The error code associated with the unexpected error. - **message** (string) A detailed error message explaining the issue. ### 500 An unexpected error #### Body: application/json (object) - **error** (string) A description of the unexpected error. - **code** (integer) The error code associated with the unexpected error. - **message** (string) A detailed error message explaining the issue. [Powered by Bump.sh](https://bump.sh)