360X
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
  1. Indicative Price
  • participants
    • Retrieve a participant
    • Index participants
  • accounts
    • Retrieve an account
    • Index accounts
  • users
    • Index users
    • Retrieve an user
  • buckets
    • Create a bucket
    • Index buckets
    • Retrieve a bucket
    • Update a bucket
    • Delete a bucket
  • settlement-providers
    • Index settlement providers
    • Toggle settlement provider enabled status
    • Set default settlement provider for account
    • Set default settlement provider for participant
  • markets
    • Retrieve a market
    • Index markets
  • instruments
    • Index instruments
    • Retrieve an instrument
  • offers
    • Create an offer
    • Index offers
    • Retrieve an offer
    • Update an offer
    • Reject a quote
  • RFQs
    • Create a RFQ
    • Get List of RFQs
    • Retrieve an RFQ by ID
    • Delete a RFQ
    • Update a RFQ
    • Rejects a RFQ
  • Indicative Price
    • Get indicative prices.
      GET
    • Create an Indicative Price
      POST
    • Update an Indicative Price
      PUT
    • Delete an Indicative Price
      DELETE
  • trades
    • Index trades
    • Retrieve a trade
  • news
    • Index news
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
  1. Indicative Price

Create an Indicative Price

Prod Env
https://app.360x.com
Prod Env
https://app.360x.com
POST
/api/v1/participant/indicative-price

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Header Params

Body Params application/json

Example
{
    "participant_id": "583b2192-1019-447d-a985-8aef53a77793",
    "account_id": "3a2f6d04-ae20-45f6-9450-c37562e888b0",
    "instrument_id": "86ee9723-cda2-47a3-8ff7-795271026e26",
    "user_id": "ca031646-eeae-4ca6-9a68-99a23b8ffc6f",
    "bid_price": "4",
    "ask_price": "4"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.360x.com/api/v1/participant/indicative-price' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "participant_id": "583b2192-1019-447d-a985-8aef53a77793",
    "account_id": "3a2f6d04-ae20-45f6-9450-c37562e888b0",
    "instrument_id": "86ee9723-cda2-47a3-8ff7-795271026e26",
    "user_id": "ca031646-eeae-4ca6-9a68-99a23b8ffc6f",
    "bid_price": "4",
    "ask_price": "4"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "823f350e-625e-41f7-be0c-826ff07e972d",
    "created_at": "2020-06-24 22:57:36",
    "updated_at": "2020-06-24 22:57:36",
    "ask_price": "44.00000000",
    "bid_price": "44.00000000",
    "participant_id": "583b2192-1019-447d-a985-8aef53a77793",
    "account_id": "3a2f6d04-ae20-45f6-9450-c37562e888b0",
    "instrument_id": "86ee9723-cda2-47a3-8ff7-795271026e26",
    "user_id": "ca031646-eeae-4ca6-9a68-99a23b8ffc6f",
    "status": "visible"
}
🟠400400
🟠401401
🟠403403
🟠404404
🔴502502
Modified at 2025-05-31 13:39:44
Previous
Get indicative prices.
Next
Update an Indicative Price