Robinhood
API actions for the Robinhood integration.
Robinhood
Trade stocks, review watchlists, and view account data with Robinhood.
Cancel order
Cancel a pending Robinhood order.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
order_id | string | Yes | Identifier of the order to cancel. |
Response
{
"result": {}
}Get account profile
Fetch account profile details such as status and buying power.
Response
{
"profile": {}
}Get stock quote
Retrieve the latest quote data for a given symbol.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Ticker symbol to look up. |
Response
{
"quote": {}
}List positions
Retrieve the current portfolio positions.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
nonzero_only | boolean | No | Whether to include only positions with shares held. |
Response
{
"positions": {}
}List watchlists
Retrieve all watchlists configured in the account.
Response
{
"watchlists": {}
}Place limit order
Submit a limit order with a specified limit price.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Ticker symbol to trade. |
quantity | number | Yes | Number of shares to trade. |
side | string | Yes | Order side: buy or sell. |
limit_price | number | Yes | Limit price for the order. |
Response
{
"order": {}
}Place market order
Submit a market order to buy or sell shares.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
symbol | string | Yes | Ticker symbol to trade. |
quantity | number | Yes | Number of shares to trade. |
side | string | Yes | Order side: buy or sell. |
Response
{
"order": {}
}