Skip to main content
GET
/
parliamentary
/
bills
curl "https://api.northaxiumdata.ca/v1/parliamentary/bills?limit=10&status=Royal+Assent" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "bill_number": "C-11",
      "session": "44-1",
      "title": "Online Streaming Act",
      "sponsor": "Minister of Canadian Heritage",
      "status": "Royal Assent",
      "last_updated": "2023-04-27",
      "introduced_date": "2022-02-02"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}
Get a standardized list of bills introduced in the House of Commons and the Senate, including their sponsors, stages, and summaries.

Query Parameters

limit
integer
default:"100"
Maximum number of bills to return. Maximum limits map to your plan (100 for Basic, 1,000 for Pro, 10,000 for Enterprise).
offset
integer
default:"0"
Number of records to skip for pagination.
session
string
Filter by parliamentary session (e.g., 44-1).
status
string
Filter by current status or stage (e.g., Royal Assent, First Reading).
curl "https://api.northaxiumdata.ca/v1/parliamentary/bills?limit=10&status=Royal+Assent" \
  -H "X-API-Key: <your-api-key>"
{
  "data": [
    {
      "bill_number": "C-11",
      "session": "44-1",
      "title": "Online Streaming Act",
      "sponsor": "Minister of Canadian Heritage",
      "status": "Royal Assent",
      "last_updated": "2023-04-27",
      "introduced_date": "2022-02-02"
    }
  ],
  "meta": {
    "total": 1,
    "limit": 10,
    "offset": 0
  }
}