Quick Start Guide
This guide will help you get started with API Pull in just a few minutes. You'll learn how to get your API key and make your first request.
1. Get Your API Key
First, you need to create an account and get your API key:
- Sign up for a free account at API Pull
- Go to the Dashboard and navigate to "API Keys"
- Click "Create New Key" and copy your API key
Important: Keep your API key secure and never share it publicly. If you think your key has been compromised, regenerate it immediately in your dashboard.
2. Make Your First Request
Now let's make a simple API request. You can use cURL, any HTTP client, or our SDKs.
curl -X GET "https://api.apicloud.com/v1/verify" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"3. Understand the Response
A successful response will look like this:
{
"success": true,
"data": {
"id": "ver_123456789",
"status": "verified",
"created_at": "2026-02-09T12:00:00Z"
},
"meta": {
"request_id": "req_abc123",
"credits_used": 1
}
}