Skip to main content
GET
/
api
/
v1
/
search
curl "https://api.northaxiumdata.ca/api/v1/search?q=Green+Energy&results_per_domain=5" \
  -H "X-API-Key: <your-api-key>"
{
  "data": {
    "contracts": {
      "total": 12,
      "results": [
        {
          "record_id": "CON-8841-A",
          "dataset": "contracts",
          "label": "Green Energy Co. — Solar Panel Installation",
          "url": "/api/v1/contracts/CON-8841-A"
        }
      ]
    },
    "lobbying": {
      "total": 3,
      "results": [
        {
          "record_id": "812039-12345",
          "dataset": "lobbying",
          "label": "Green Energy Solutions Corp.",
          "url": "/api/v1/lobbying/communications/812039-12345"
        }
      ]
    }
  },
  "meta": {
    "q": "Green Energy",
    "results_per_domain": 5,
    "domains_with_results": 2
  }
}
Perform a global text search to find references to a specific company, individual, or query across contracts, lobbying, grants, contributions, and parliament.

Query Parameters

q
string
required
The search term or phrase (e.g., "Green Energy", "Jane Doe"). Example: Palantir.
results_per_domain
integer
default:"5"
Maximum number of results to return per dataset group. Example: 5.
curl "https://api.northaxiumdata.ca/api/v1/search?q=Green+Energy&results_per_domain=5" \
  -H "X-API-Key: <your-api-key>"
{
  "data": {
    "contracts": {
      "total": 12,
      "results": [
        {
          "record_id": "CON-8841-A",
          "dataset": "contracts",
          "label": "Green Energy Co. — Solar Panel Installation",
          "url": "/api/v1/contracts/CON-8841-A"
        }
      ]
    },
    "lobbying": {
      "total": 3,
      "results": [
        {
          "record_id": "812039-12345",
          "dataset": "lobbying",
          "label": "Green Energy Solutions Corp.",
          "url": "/api/v1/lobbying/communications/812039-12345"
        }
      ]
    }
  },
  "meta": {
    "q": "Green Energy",
    "results_per_domain": 5,
    "domains_with_results": 2
  }
}