Skip to main content
POST
/
api
/
v1
/
muni_events
US municipal bond events
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isins": [
    "US005824LP01"
  ]
}
'
{
  "data": [
    {
      "events": [
        {
          "category": "creation",
          "date": "2024-01-30",
          "details": {
            "amount": 240000,
            "description": "Primary issuance",
            "history": []
          },
          "name": "creation"
        }
      ],
      "isin": "US005824LP01"
    }
  ],
  "total": 1
}

Documentation Index

Fetch the complete documentation index at: https://docs.terrapinfinance.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
isins
string[]
required

International Securities Identification Number (ISIN), unique 12-character code for the security.

Required string length: 12

Response

Event data

data
object[]
required

List of response data objects, often capped to 1000.

total
integer
required

Total number of results in the database that match the query filters.