Get started
Getting Started
Welcome to WorqHat! This guide will help you get started with the WorqHat API.
Prerequisites
Before you begin, make sure you have:
- A WorqHat API key
- Node.js 18+ or Python 3.8+ installed
- Basic knowledge of REST APIs
Quick Start
- Get your API key from the WorqHat dashboard
- Set up your environment with the API key
- Make your first request using our API
Example Request
example-request.js
const response = await fetch('https://api.worqhat.com/health', {headers: { 'Authorization': `Bearer ${process.env.WORQHAT_API_KEY}`}});Next Steps
- Read the Authentication guide
- Explore the API Reference
- Check out the Cookbook for examples
