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

Update an Indicative Price

Prod Env
https://app.360x.com
Prod Env
https://app.360x.com
PUT
/api/v1/participant/indicative-price/{indicativePriceId}

Request

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

Header Params

Body Params application/json

Example
{
    "entity": {
        "ask_price": 4,
        "bid_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 PUT 'https://app.360x.com/api/v1/participant/indicative-price/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "entity": {
        "ask_price": 4,
        "bid_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",
    "participant": {
        "id": "0773f055d63947379592f19d25fc35a6",
        "lei": "Example Participant LEI",
        "type": "legal_entity",
        "category_name": "professional",
        "name": "Example Participant Name",
        "address": "Grüneburgweg 13",
        "postal_code": "60313",
        "city": "Frankfurt",
        "state": "Hessen",
        "country": "AT",
        "legal_form": "OG",
        "registration_number": "HRB123457",
        "tax_number": "2",
        "status": "active",
        "kyc_status": "successful",
        "csd": "123",
        "csd_bic_11": "123",
        "custody_account_number": "CSD345678",
        "custody_account_beneficiary_bic_8": "123",
        "createdAt": "2024-11-18 15:49:40",
        "updatedAt": "2024-11-19 10:50:07"
    },
    "account": {
        "id": "94f292a023c94bbba8722ed6460a8011",
        "number": "ATWHSLA6661",
        "status": "active",
        "type": "agent",
        "participant": null,
        "participant_id": "0773f055d63947379592f19d25fc35a6",
        "createdAt": "2024-11-19 10:50:12",
        "updatedAt": "2024-11-19 10:50:12"
    },
    "instrument": {
        "id": "aa0339d1bf484229bbcd570da5f52828",
        "name": "Krypto-Unternehmenswandelanleihe",
        "isin": "EXAMPLEISIN",
        "book_runner": "360X",
        "exchange": "360X",
        "unit_quotation": "Undisclosed",
        "instrument_limits": {
            "ask": [],
            "bid": []
        },
        "createdAt": "2024-11-19 11:23:35",
        "updatedAt": "2024-11-19 11:04:50"
    }
}
🟠400400
🟠401401
🟠403403
🟠404404
🔴502502
Modified at 2025-05-31 13:39:44
Previous
Create an Indicative Price
Next
Delete an Indicative Price