360X
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
API ReferenceREST
WebsocketsFIXSupportStatusWebsite
  1. accounts
  • participants
    • Retrieve a participant
    • Index participants
  • accounts
    • Retrieve an account
      GET
    • Index accounts
      GET
  • 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.
    • 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. accounts

Retrieve an account

Prod Env
https://app.360x.com
Prod Env
https://app.360x.com
GET
/api/v1/accounts/{accountId}

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/accounts/' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "id": "f14daae1-58c0-4d77-972c-47e52cd1df76",
    "number": "DEPROFA3802",
    "type": "agent",
    "status": "active",
    "participant_id": "46b13f79-c24d-4afe-8fc5-cce35b8b005c",
    "participant": {
        "id": "9646f35b32934be7a049bf7d7bf3b793",
        "lei": "Example Participant LEI",
        "type": "legal_entity",
        "category_name": "professional",
        "name": "Example Participant Name",
        "address": "Grüneburgweg 16",
        "postal_code": "60322",
        "city": "Frankfurt am Main",
        "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"
    },
    "users": [
        {
            "id": "14d7c424fc41436c9e7202da3641cc30",
            "email": "idonotexist@360x.com",
            "role": "PARTICIPANT_ADMIN",
            "is_email_verified": true,
            "identification_status": "successful",
            "is_login_two_fa_enabled": false,
            "terms_conditions_signed": true,
            "last_active": "2024-11-19 00:00:00",
            "status": "active",
            "locale": "en",
            "participant_id": "0773f055d63947379592f19d25fc35a6",
            "terms_conditions_signed_at": "2024-11-19 13:24:18",
            "createdAt": "2024-11-19 09:29:33",
            "updatedAt": "2024-11-19 10:54:09",
            "profiles": [
                {}
            ],
            "phones": [
                {}
            ],
            "participant": null,
            "accounts": []
        }
    ],
    "createdAt": "2020-06-24 22:57:36",
    "updatedAt": "2020-06-24 22:57:36"
}
🟠400400
🟠401401
🟠403403
🟠404404
🔴502502
Modified at 2025-05-31 13:39:44
Previous
Index participants
Next
Index accounts