Lodol Docs

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

ParameterTypeRequiredDescription
order_idstringYesIdentifier 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

ParameterTypeRequiredDescription
symbolstringYesTicker symbol to look up.

Response

{
  "quote": {}
}

List positions

Retrieve the current portfolio positions.

Parameters

ParameterTypeRequiredDescription
nonzero_onlybooleanNoWhether 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

ParameterTypeRequiredDescription
symbolstringYesTicker symbol to trade.
quantitynumberYesNumber of shares to trade.
sidestringYesOrder side: buy or sell.
limit_pricenumberYesLimit price for the order.

Response

{
  "order": {}
}

Place market order

Submit a market order to buy or sell shares.

Parameters

ParameterTypeRequiredDescription
symbolstringYesTicker symbol to trade.
quantitynumberYesNumber of shares to trade.
sidestringYesOrder side: buy or sell.

Response

{
  "order": {}
}

On this page