Kruncher.ai Integration Documentation
Kruncher.ai is a cutting-edge platform designed to deliver actionable investment insights through AI-driven data analysis. This documentation explains the basic settings needed to start integrating with our API and shows you how to obtain your API key.
Basic Settings
To integrate with the Kruncher.ai API, please follow these steps:
-
Account Setup
Ensure you have an active account on kruncher.ai . If you do not have one, please sign up and verify your email address. -
Accessing API Settings
After logging in, navigate to your account dashboard and select Settings. Then click on the Integration tab to view your API key details. -
Understanding the API Key
Your API key is a unique identifier used to authenticate requests to the Kruncher.ai API. It enables third-party applications to securely access our platform’s data and functionality. -
Copying Your API Key
Click on the Copy API Key button provided in the API settings. This copies your API key to the clipboard for use in your integration code.
Obtaining Your API Key
Follow these simple steps to obtain your API key:
- Step 1: Log in to your kruncher.ai account.
- Step 2: Go to Settings > API Integration.
- Step 3: Locate the API key section where your unique key is displayed.
- Step 4: Click on Copy API Key to securely copy it.
Important: Keep this key private—do not expose it publicly in client-side code.
Sample Integration
Below is a basic JavaScript example that demonstrates how to use your API key to make a request to the Kruncher.ai API:
// Replace 'YOUR_API_KEY_HERE' with your actual API key
const apiKey = 'YOUR_API_KEY_HERE';
const url = 'https://api.kruncher.ai/api/config';
fetch(url, {
headers: {
'Authorization': `Bearer ${apiKey}`,
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(data => {
console.log('Kruncher API Data:', data);
})
.catch(error => {
console.error('Error fetching data:', error);
});