View History
Use this page when you want to check whether a stock action or share adjustment has already been recorded for an issuer.
The event poller is the source of new history entries. Allow ~20 seconds on Plume Mainnet between an onchain transaction and a successful read.
Send a GET request
curl 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 of { issuer, transaction } items. Each transaction is a fully populated OCF document.
[
{
"issuer": "<YOUR_ISSUER_ID>",
"transaction": {
"object_type": "TX_STOCK_ISSUANCE",
"date": "2026-01-01",
"security_id": "<YOUR_SECURITY_ID>",
"stakeholder_id": "<YOUR_STAKEHOLDER_ID>",
"stock_class_id": "<YOUR_STOCK_CLASS_ID>",
"quantity": "100000",
"share_price": {
"amount": "4.20",
"currency": "USD"
}
}
}
]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?
Why you might not see a record
Some routes save data but never appear here on their own — typically equity compensation, convertibles, and supporting records like stock plans or vesting terms. For the full list of which routes do and do not appear, see Add New History.