```ts title="Request"
import { useCandle } from "react-native-candle"
const candle = useCandle()
// [!code highlight]
await candle.getTrades()
```
Get started with the [Candle SDK for React Native](/setup/install).
```ts title="Response"
{
linkedAccounts: [
{
linkedAccountID: "...",
service: "uber",
serviceUserID: "...",
state: "active",
},
{
linkedAccountID: "...",
service: "robinhood",
serviceUserID: "...",
state: "active",
},
{
linkedAccountID: "...",
service: "apple",
serviceUserID: "...",
state: "active",
},
],
trades: [
{
dateTime: "2026-01-01T12:10:00.000-05:00",
state: "success",
counterparty: {
kind: "service",
service: "robinhood",
},
lost: {
assetKind: "stock",
serviceAccountID: "...",
serviceAssetID: "...",
symbol: "AAPL",
amount: 1.856,
serviceTradeID: "...",
linkedAccountID: "...",
service: "sandbox",
name: "Apple",
color: "#000000",
logoURL: "https://example.com/aapl.png",
},
gained: {
assetKind: "fiat",
serviceAccountID: "...",
currencyCode: "USD",
amount: 500,
linkedAccountID: "...",
service: "robinhood",
},
},
{
dateTime: "2026-01-01T12:00:00.000-05:00",
state: "success",
counterparty: {
kind: "user",
legalName: "John Doe",
avatarURL: "https://example.com/johndoe.png",
username: "jdoe",
},
lost: {
assetKind: "fiat",
serviceAccountID: "...",
currencyCode: "USD",
amount: 22.05,
linkedAccountID: "...",
service: "uber",
},
gained: {
assetKind: "transport",
serviceTradeID: "...",
serviceAssetID: "...",
serviceAccountID: "...",
name: "UberXL",
description: "Honda Civic",
imageURL: "https://example.com/uberxl.png",
originCoordinates: {
latitude: 37.778457,
longitude: -122.389238,
},
originAddress: {
value: "565 Clay St, San Francisco, CA 94111, United States",
},
destinationCoordinates: {
latitude: 37.794652,
longitude: -122.402706,
},
destinationAddress: {
value: "24 Willie Mays Plaza, San Francisco, CA 94107, United States",
},
seats: 6,
departureDateTime: "2026-01-01T12:05:00.000-05:00",
arrivalDateTime: "2026-09-14T12:15:00.000-05:00",
linkedAccountID: "...",
service: "uber",
},
},
{
dateTime: "2026-01-01T11:30:00.000-05:00",
state: "success",
counterparty: {
kind: "merchant",
name: "Starbucks",
logoURL: "https://example.com/starbucks.png",
location: {
countryCode: "US",
countrySubdivisionCode: "CA",
localityName: "San Francisco",
},
},
lost: {
assetKind: "fiat",
serviceAccountID: "...",
currencyCode: "USD",
amount: 6.99,
linkedAccountID: "...",
service: "apple",
},
gained: {
assetKind: "other",
},
},
]
}
```