Create Easy Order

İstekte bulunan kullanıcı için kolay al / sat order ı oluşturmaktadır.

HEADER

Field NameTypeRequiredDescription

Authorization

String

Evet

X-Signature

String

Evet

BODY

Field NameTypeRequiredDescription

Market

String

Evet

Oluşturulacak market bilgisi olabilir; eos_tl

Trade

String

Evet

Sadece buy ve sell değerlerini alabilir

Type

String

Evet

Sadece easy olabilir

Total

Decimal

Evet

Request

curl --location 'https://api.maximus.team/order' \
--header 'Authorization: {{AUTH_TOKEN}}' \
--header 'X-Signature: {{REQUEST_SIGNATURE}}' \
--header 'Host: api.maximus.team' \
--header 'Content-Type: application/json' \
--data '{
    "market": "eos_tl",
    "trade": "buy",
    "total": 100,
    "type": "easy"
}'

Response

{
    "uid": "2zy5rjdo-n1gq-77gx-wk1g-q47x0w3689lo",
    "user_uid": "5e1yg6nm-lop8-0kzr-gw45-0wkzvq4jr293u",
    "market": "eos_tl",
    "trade": "buy",
    "type": "easy",
    "status": "open",
    "price": "0",
    "amount": "5.2301255230125523",
    "total": "99.999999999999999976",
    "remaining_amount": "5.23012552",
    "average": "0",
    "condition": "0",
    "created_at": "2024-06-05T07:25:09.470886834Z",
    "opened_at": "2024-06-05T07:25:09.470886834Z"
}

Last updated