← Utilitaires pour développeurs

Informations sur les couleurs

GET /colors/:hex

Obtenez comprehensive information sur tout color by its hex code. Renvoie le closest named color, RGB, HSL, HSV, et CMYK values, contrast suggestions, et a preview image URL. Utile pour les design tools, accessibility checkers qui need color contrast data, color conversion utilities, et educational apps teaching color theory.

Paramètres

hex requis

Hex color

Exemples de requêtes

Utilisation de base
curl https://nordapi.ee/api/v1/colors/4287f5
Info about a blue color
curl https://nordapi.ee/api/v1/colors/4287f5
Info about pure red
curl https://nordapi.ee/api/v1/colors/ff0000
Info about a dark green
curl https://nordapi.ee/api/v1/colors/2ecc71

Réponse en direct

{
  "data": {
    "cmyk": "cmyk(73, 45, 0, 4)",
    "contrast": "#000000",
    "exact_match": false,
    "hex": "#4287F5",
    "hsl": "hsl(217, 90%, 61%)",
    "hsv": "hsv(217, 73%, 96%)",
    "image": "https://www.thecolorapi.com/id?format=svg&named=false&hex=4287F5",
    "image_named": "https://www.thecolorapi.com/id?format=svg&hex=4287F5",
    "name": "Blueberry",
    "rgb": "rgb(66, 135, 245)"
  },
  "success": true
}