Skip to main content
POST
Batch create orders

Authorizations

X-Monaco-Signature
string
header
required

Ed25519 session-key request signing. Every authenticated request carries three headers: X-Monaco-PublicKey (64-char lowercase-hex session public key), X-Monaco-Timestamp (Unix milliseconds, within 30s of server time), and X-Monaco-Signature (hex ed25519 signature). The signature is over METHOD\npath?query\ntimestamp_ms\nSHA256_hex(body), where the body hash is the SHA-256 of the empty byte string when there is no body. Obtain the session keypair from POST /api/v1/auth/challenge followed by POST /api/v1/auth/verify.

Body

application/json
orders
object[]
required
Required array length: 1 - 100 elements

Response

OK

totalRequested
integer<int32> | null

Number of orders requested to create

Example:

5

totalSucceeded
integer<int32> | null

Number of orders successfully created

Example:

4

totalFailed
integer<int32> | null

Number of creations that failed

Example:

1

results
object[] | null