360X
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
  1. buckets
  • participants
    • Retrieve a participant
    • Index participants
  • accounts
    • Retrieve an account
    • Index accounts
  • users
    • Index users
    • Retrieve an user
  • buckets
    • Create a bucket
      POST
    • Index buckets
      GET
    • Retrieve a bucket
      GET
    • Update a bucket
      PUT
    • Delete a bucket
      DELETE
  • 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.
    • Create an Indicative Price
    • Update an Indicative Price
    • Delete an Indicative Price
  • trades
    • Index trades
    • Retrieve a trade
  • news
    • Index news
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
  1. buckets

Retrieve a bucket

Prod Env
https://app.360x.com
Prod Env
https://app.360x.com
GET
/api/v1/participant/buckets/{bucketId}

Request

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

Header Params

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 GET 'https://app.360x.com/api/v1/participant/buckets/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "d0ade041-94a6-4ce0-853a-6bf56e027102",
    "name": "d0ade041-94a6-4ce0-853a-6bf56e027102",
    "instruments": [
        {
            "id": "00d54fce8af347a0a01c48f9762ef764",
            "name": "Unternehmensanleihe",
            "type": "Undisclosed",
            "icon_url": null,
            "precision": 8,
            "contract_config": null,
            "fee_limit_config": null,
            "subunits_config": 8,
            "enabled": true,
            "minimal_collection_amount": null,
            "withdraw_fee": 0,
            "max_withdrawal_amount": null,
            "min_withdraw_fee": 0,
            "max_withdraw_fee": 0,
            "balance": null,
            "buyer_primary_fee": null,
            "buyer_secondary_fee": null,
            "seller_secondary_fee": null,
            "seller_primary_fee": null,
            "transaction_fees_approved": false,
            "state": "BLANK",
            "visibility": true,
            "product_page_url": null,
            "repayment_enabled": null,
            "terms_url": null,
            "issuer_participant_id": null,
            "industry": "Undisclosed",
            "isin": "EXAMPLEISIN",
            "mkt_iss": "EURO CREDIT",
            "country_region": "DE",
            "rank": "Senior",
            "secured": "Undisclosed",
            "coupon": "4000",
            "coupon_frequency": "Annual",
            "day_count": "2024-04-28 00:00:00",
            "maturity": null,
            "repayment": "EUR",
            "currency": "Undisclosed",
            "series": "Fixed",
            "coupon_type": "Undisclosed",
            "issue_price": "Undisclosed",
            "bid_limit": "Undisclosed",
            "ask_limit": "Undisclosed",
            "ask_quantity": "Undisclosed",
            "reoffer": "Undisclosed",
            "iss_sprd": "Undisclosed",
            "benchmark_ref_px": "Undisclosed",
            "benchmark_ref_yield": "Undisclosed",
            "irs_yield": "Undisclosed",
            "iss_sprd_vs_irs": "Undisclosed",
            "pricing_date": "2022-04-28T00:00:00.000Z",
            "interest_accrual_date": "2022-04-28T00:00:00.000Z",
            "first_settle_date": "2023-04-28T00:00:00.000Z",
            "first_coupon_date": "2023-04-28T00:00:00.000Z",
            "amt_issue": "1400000",
            "amt_outstanding": "Undisclosed",
            "min_piece": "100000",
            "min_increment": "100000",
            "par_amount": "100000",
            "book_runner": "360X",
            "exchange": "360X",
            "note": "Issuer GmbH",
            "issuer": "Issuer AG",
            "lei": null,
            "unit_quotation": "Undisclosed",
            "instrument_limits": {
                "ask": [],
                "bid": []
            },
            "createdAt": "2024-11-19 13:28:36",
            "updatedAt": "2024-11-08 16:24:33"
        }
    ],
    "type": "d0ade041-94a6-4ce0-853a-6bf56e027102",
    "participant_id": "d0ade041-94a6-4ce0-853a-6bf56e027102",
    "is_enabled": true,
    "createdAt": "d0ade041-94a6-4ce0-853a-6bf56e027102",
    "updatedAt": "d0ade041-94a6-4ce0-853a-6bf56e027102"
}
🟠400400
🟠401401
🟠403403
🟠404404
🔴502502
Modified at 2025-05-31 13:39:44
Previous
Index buckets
Next
Update a bucket