### List User Accounts with Composer API Source: https://help.composer.trade/article/236-getting-started-with-your-composer-api An example using cURL to list the user's accounts via the Composer API. It shows the GET request method, the endpoint, and the necessary authentication headers. ```cURL curl -X GET "https://api.composer.trade/api/v0.1/accounts/list" \ -H "x-api-key-id: " \ -H "authorization: Bearer " ``` -------------------------------- ### Retrieve Activity Report with Composer API Source: https://help.composer.trade/article/236-getting-started-with-your-composer-api An example using cURL to retrieve a CSV activity report for a specific account from the Composer API. It includes the GET request, endpoint with parameters for date range and report type, and authentication headers. ```cURL curl -X GET "https://api.composer.trade/api/v0.1/reports/550e8400-e29b-41d4-a716-446655440000?since=2023-01-01T00:00:00Z&until=2023-01-01T23:59:59.999Z&report-type=trade-activity" \ -H "accept: text/csv" \ -H "x-api-key-id: " \ -H "authorization: Bearer " ``` -------------------------------- ### Composer API Authentication Headers Source: https://help.composer.trade/article/236-getting-started-with-your-composer-api Demonstrates the required headers for authenticating API requests to the Composer API. It includes the API Key ID and the authorization token using the API Secret. ```HTTP x-api-key-id: authorization: Bearer ``` -------------------------------- ### Example Referral Code Format Source: https://help.composer.trade/article/72-referral-program Illustrates the expected format of a referral code used within the Composer application, which includes a unique alphanumeric string followed by '-TRADE'. ```Text IrZHhBh-TRADE ``` -------------------------------- ### Composer: Use RSI in Conditional Blocks Source: https://help.composer.trade/article/70-relative-strength-index This example shows how to use the 60-day Relative Strength Index (RSI) of SPY in a conditional block within Composer. The condition evaluates if the RSI is greater than 25, indicating a potential oversold state. ```Composer Conditional: 60-day RSI of SPY > 25 ```