Skip to Content
Docs are evolving — expect frequent updates.
Quick Start

Getting Started: Your First Kruncher API Request

Start using the Kruncher.ai API in 5 minutes. This guide walks you through retrieving your first project.

1. Get Your API Key

  1. Log in to kruncher.ai
  2. Ensure your account has owner or admin permissions
  3. Navigate to SettingsAPI Integration
  4. Click Generate API Key or copy your existing key

⚠️ Note: If you don’t see the API Integration tab in Settings, your account does not have owner/admin permissions. Contact your account owner to generate an API key or grant you the necessary permissions.

2. Make Your First Call

Pick your language below and copy the code. Replace YOUR_API_KEY_HERE with your actual API key.

CODE
const apiKey = "YOUR_API_KEY_HERE";
 
fetch("https://api.kruncher.ai/api/integration/projects?page=0&pageSize=20", {
  headers: {
    "Authorization": `${apiKey}`
  }
})
  .then(res => res.json())
  .then(data => console.log(data))
  .catch(error => console.error("Error:", error));

3. See the Result

A successful call returns your projects along with pagination info. Here’s what the response looks like:

CODE
{
  "metadata": {
    "code": "1000",
    "title": "Successful",
    "description": ""
  },
  "data": [
    {
      "id": "521a93a6-091d-4943-ba13-7c1a654a14ae",
      "name": "Acme",
      "companyName": "Acme Corporation",
      "companyWebsite": "https://acme.com",
      "companyIndustry": ["Software", "SaaS"],
      "companyStage": "seriesA",
      "processing": "completed",
      "analyses": [
        {
          "id": "analysis_xyz789",
          "type": "company",
          "status": "completed",
          "createdAt": "2024-01-15T10:30:00Z"
        }
      ],
      "projectScores": [
        {
          "score": 8.5,
          "scoreText": "Strong Fit"
        }
      ]
    }
  ],
  "pagination": {
    "page": 0,
    "totalCount": 42,
    "pageSize": 20,
    "nextPage": true
  }
}

For the full list of response fields, see Find Companies.

4. Let’s see it in action!

You should see a list of your projects. Now explore:

Or check out Postman Collection to test interactively.

Need Help?

Last updated on