Skip to content

Introduction

Welcome to the DevTools API documentation. This guide will help you integrate our powerful APIs into your applications.

Base URL
https://api.devtools.com/v1

Authentication

All API requests require authentication using an API key. Include your API key in the Authorization header.

curl
curl https://api.devtools.com/v1/users \
  -H "Authorization: Bearer YOUR_API_KEY"

Quick Start

Get up and running in minutes with our SDK.

bash
npm install @devtools/sdk
javascript
const DevTools = require('@devtools/sdk');

const client = new DevTools({
  apiKey: process.env.DEVTOOLS_API_KEY
});

// Fetch users
const users = await client.users.list();
console.log(users);

Making Requests

All requests should be made over HTTPS. The API accepts JSON-encoded request bodies and returns JSON-encoded responses.

Rate Limits

Free tier: 100 requests/minute. Pro tier: 1,000 requests/minute. Enterprise: Custom limits.