Skip to main content
GET
/
api
/
positions
/
{position_heron_id}
/
transactions
Get transactions for a specific position
curl --request GET \
  --url https://app.herondata.io/api/positions/{position_heron_id}/transactions \
  --header 'x-api-key: <api-key>'
{
  "investment_transactions": [
    {
      "amount": {
        "amount": "1234.56",
        "currency": "USD"
      },
      "description": "<string>",
      "heron_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ],
  "position_heron_id": "<string>",
  "repayment_transactions": [
    {
      "amount": {
        "amount": "1234.56",
        "currency": "USD"
      },
      "description": "<string>",
      "heron_id": "<string>",
      "timestamp": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Path Parameters

position_heron_id
string
required

The position heron ID

Response

Position transactions retrieved successfully

investment_transactions
object[]
position_heron_id
string
repayment_transactions
object[]