it's possible to send with api STOP_LOSS_LIMIT in spot market?

it’s possible to send with api STOP_LOSS_LIMIT in spot market?

when i try the erorr is always

|Not all sent parameters were read; read ‘8’ parameter(s) but was sent ‘9’.|

I send this parameter plus timeinforce:

symbol = “BNBUSDT”
side = “BUY”
type = "STOP_LOSS_LIMIT
quantity = 0.08
price = 165
stopPrice = 164.9

Ensure that your HTTP method is POST not GET.

Yes i use post, i’ve read in some sites that STOP_LOSS_LIMIT in not possible to use in spot market but only in futere market, so how can i send a stop loss order?

https://binance-docs.github.io/apidocs/spot/en/#public-api-definitions

You can see the different types of order you fill from the link above under order types. Then, fill in the type parameter under the trade endpoint along with the stopPrice.