/v1/meta
Spec
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/palette-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/palette-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/palette-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/palette-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"auth": "none upstream; this gateway requires x-api-key",
"name": "Color Palette API",
"note": "Extract the dominant colour palette from an image. Pass ?url= an image URL or ?image= a base64 image, with optional ?count=6 (1-16). Returns the palette (hex, RGB, coverage %), the dominant colour and the average colour. Supports PNG, JPEG, BMP, TIFF, GIF. Distinct from color-api (single-colour conversion). Live, nothing stored.",
"source": "Local extraction (Jimp quantization) — no third-party service, no key",
"endpoints": 2
},
"meta": {
"timestamp": "2026-06-02T16:52:03.387Z",
"request_id": "3683ee35-40ee-46f7-b039-f53bdeb52ffa"
},
"status": "ok",
"message": "Meta",
"success": true
}