The Techstack Belgium API provides free access to our database of Belgian tech companies. All endpoints return JSON and require no authentication.
No authentication required. The API is completely open and free to use.
/companies.jsonRetrieve all verified Belgian tech companies with their locations, tech stacks, and proof references.
{
"companies": [
{
"name": "Example Company",
"site": "https://example.com",
"locations": [
{
"province": "antwerp",
"municipality": "antwerp"
}
],
"tech": ["React", "Node.js", "PostgreSQL"],
"employees": "RANGE_11_25",
"founded": 2015,
"lastUpdated": "2024-06-01",
"proof": [
{
"url": "https://example.com/careers",
"image": "https://example.com/screenshot.png"
}
]
}
],
"count": 1234,
"version": "1.0.0",
"lastUpdated": "2024-06-01"
}| Field | Type | Description |
|---|---|---|
| name | string | Company name |
| site | string | Company website URL |
| locations | Location[] | Array of company locations |
| tech | string[] | Array of technology names |
| employees | string | Employee range (enum) |
| founded | number | Year founded |
| lastUpdated | string | Last update date (YYYY-MM-DD) |
| proof | Proof[] | Array of proof references with URLs and screenshots |
There are currently no rate limits. Please be respectful and cache responses when possible.
For questions, bug reports, or feature requests, please open an issue on GitHub:
GitHub Issues