Parameters

type
string
account_id
number
category_id
array
items
number
list_price
number
POST/
curl https://api.tradly.app/ \
  -H "Authorization: Bearer YOUR_PUBLISHABLE_OR_SECRET_KEY" \
  -H "Content-Type: application/json" \
  -X POST \
  -d '{
  "type": "listings",
  "account_id": 1,
  "category_id": [
    244,
    243
  ],
  "list_price": 2000
}'
RESPONSE
{
  "status": true,
  "data": {
    "commission_amount": 12.5,
    "currency": "USD"
  }
}