Utilities Free Tier Available
ColorPalette
Create harmonious color palettes, convert between HEX/RGB/HSL, and extract palettes from images.
Free tier: 10,000 requests/month Method:
GET Quick Start
Get started with ColorPalette in 3 steps:
- 1. Get your free API key (instant, no credit card)
- 2. Activate your key to unlock all endpoints
- 3. Make your first request using the examples below
Endpoint
GET https://freeapitools.dev/api/v1/colors
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
color | string | Optional | Base color (hex or name) |
mode | string | Optional | complementary, analogous, triadic, etc. |
api_key | string | Required | Your API key. Get one free → |
Code Examples
cURL
curl "https://freeapitools.dev/api/v1/colors?color=example"
Node.js / JavaScript
const response = await fetch(
'https://freeapitools.dev/api/v1/colors?color=example',
{ headers: { 'X-API-Key': 'YOUR_API_KEY' } }
);
const data = await response.json();
console.log(data); Python
import requests
response = requests.get(
'https://freeapitools.dev/api/v1/colors',
params={'color': 'example'},
headers={'X-API-Key': 'YOUR_API_KEY'}
)
print(response.json()) Example Response
{
"palette": [
"#2563EB",
"#3B82F6",
"#60A5FA",
"#93C5FD",
"#BFDBFE"
],
"mode": "monochromatic"
} Rate Limits
| Plan | Limit | Price |
|---|---|---|
| Free | 10,000 requests/month | $0 / month |
| Enhanced (10x) | 10x free tier limits | $0 / month — complete compatibility check |
| Unlimited | No limits | $0 / month — send environment profile |
Start Using ColorPalette for Free
Get your API key instantly. No credit card, no signup form — just a simple API call.
Get Free API Key →