Skip to main content
POST
/
api
/
v1
/
muni_documents
Get official statement for a municipal bond
curl --request POST \
  --url https://terrapinfinance.com/api/v1/muni_documents \
  --header 'Accept: <accept>' \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "isin": "US002842EZ11"
}
'
{
  "data": [
    {
      "document_name": "Official Statement posted 08/15/2023 (1.6 MB)",
      "file_id": "ROaomzq-lhfQ-LMSd8Zvow.pdf",
      "isin": "US002842EZ11",
      "publish_date": "2023-08-15"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

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

Headers

Accept
enum<string>
default:application/json
required

Specify text/csv if you would like to receive a CSV file.

Available options:
application/json,
text/csv

Body

application/json
isin
string
required

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

Required string length: 12

Response

File IDs and metadata for official statements associated with the municipal bond

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.