View History

Use this page when you want to check whether a stock action or share adjustment has already been recorded for an issuer.

Send a GET request

GET http://localhost:8293/historical-transactions/issuer-id/<YOUR_ISSUER_ID>

Replace <YOUR_ISSUER_ID> with the issuer _id from your issuer creation response.

Check the response

The response is an array. Each item includes:

  • transaction - the populated transaction document
  • issuer - the issuer ID

Start with transaction.date, transaction.security_id, and the transaction body itself.

[
    {
        "issuer": "<YOUR_ISSUER_ID>",
        "transaction": {
            "date": "2026-01-01",
            "security_id": "<YOUR_SECURITY_ID>"
        }
    }
]

Use this route to answer common checks

  • did my stock action land yet
  • did an authorized shares adjustment show up
  • am I looking at the right issuer history

Quick verification recipe

  1. Send the stock action or share adjustment route.
  2. Fetch this history endpoint again.
  3. Look for the new date, security_id, and transaction entry.

Why you might not see a record

These routes save data but do not show up here on their own:

  • POST /transactions/issuance/equity-compensation
  • POST /transactions/issuance/convertible

For the full list of routes that do and do not appear here, read Add New History.

What’s next?

Read Add New History to see which routes add new history entries.