/reference/splits

Base URL https://api.babylon.app/v1

GET /reference/splits

List split records for the securities held in a segment ledger.

Query parameters

  • segmentLedger (required) — segment-ledger identifier.

Example request

GET /reference/splits?segmentLedger=MyGBSegment

Example response — 200

{
  "name": "Splits",
  "description": "Splits for segment ledger MyGBSegment",
  "columns": ["splitSet", "beforeQuantity", "afterQuantity", "splitDate", "beforeIsin", "afterIsin", "comments", "bourseSymbol"],
  "columnTypes": {
    "beforeQuantity": "Decimal",
    "afterQuantity": "Decimal"
  },
  "rows": [
    {
      "splitSet": "LSE",
      "beforeQuantity": "1",
      "afterQuantity": "2",
      "splitDate": "2025-06-01",
      "beforeIsin": "GB0000000001",
      "afterIsin": "GB0000000002",
      "comments": "2-for-1 split",
      "bourseSymbol": "LSE:ABC"
    }
  ]
}

For CSV, send Accept: text/csv.

POST /reference/splits

POST performs the same lookup with parameters in a JSON request body.

POST /reference/splits
Content-Type: application/json
{
  "segmentLedger": "MyGBSegment"
}

The response has the same shape as the GET response.

← Back to API