Back to directory

API Documentation

Access verified Belgian tech company data programmatically

Overview

The Techstack Belgium API provides free access to our database of Belgian tech companies. All endpoints return JSON and require no authentication.

https://techstack.be/companies.json

Authentication

No authentication required. The API is completely open and free to use.

Endpoints

GET /companies.json

Retrieve all verified Belgian tech companies with their locations, tech stacks, and proof references.

Response

{
  "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"
}

Response Schema

Company Object

FieldTypeDescription
namestringCompany name
sitestringCompany website URL
locationsLocation[]Array of company locations
techstring[]Array of technology names
employeesstringEmployee range (enum)
foundednumberYear founded
lastUpdatedstringLast update date (YYYY-MM-DD)
proofProof[]Array of proof references with URLs and screenshots

Rate Limits

There are currently no rate limits. Please be respectful and cache responses when possible.

Support

For questions, bug reports, or feature requests, please open an issue on GitHub:

GitHub Issues