Color matching API

The ColorClue API allows you to match any color against a huge database of color names. Just send a HTTP Get request to https://colorclue.shuttleapp.rs/v1/match?color= followed by a hex color code. The API will return a JSON object with the name of the color and the closest matches from the database.

#4e49ab
Blue Berry
Bash
curl -X GET " https://colorclue.shuttleapp.rs/v1/match?color=4f46e5"
                                    [
  {
    "catalog_id": "CO",
    "catalog_name": "Copic Marker Collection",
    "color": {
      "id": "CC 3 CO 16",
      "accuracy": 55.318867,
      "hex": "#4552A1",
      "catalog_index": "BV04",
      "english_name": "Blue Berry",
      "description": "A dark blue-violet reflecting the color of blueberry"
    }
  },
  {
    "catalog_id": "TCC",
    "catalog_name": "Traditional Chinese Colors",
    "color": {
      "id": "CC 3 TCC 53",
      "accuracy": 28.60769,
      "hex": "#4B5CC4",
      "english_name": "Sapphire blue",
      "romanized_name": "bǎo lán",
      "original_name": "宝蓝",
      "description": "A rich and deep blue color resembling the color of sapphire gemstones."
    }
  },
  {
    "catalog_id": "RD",
    "catalog_name": "RAL Design",
    "color": {
      "id": "CC 3 RD 1464",
      "accuracy": 24.444305,
      "hex": "#495389",
      "catalog_index": "RAL 290 30 40",
      "english_name": "Official violet"
    }
  },
  {
    "catalog_id": "WS",
    "catalog_name": "Wada Sanzo's Dictionary of Color Combinations",
    "color": {
      "id": "CC 3 WS 139",
      "accuracy": 24.157476,
      "hex": "#4d52de",
      "catalog_index": "140",
      "english_name": "Dark Soft Violet"
    }
  },
  {
    "catalog_id": "FSC",
    "catalog_name": "Federal Standard 595c",
    "color": {
      "id": "CC 3 FSC 369",
      "accuracy": 23.513937,
      "hex": "#515fc1",
      "catalog_index": "27144",
      "english_name": "FS-595C 27144"
    }
  },
  {
    "catalog_id": "TJC",
    "catalog_name": "Traditional Japanese Colors",
    "color": {
      "id": "CC 3 TJC 188",
      "accuracy": 2.9627204,
      "hex": "#1F4788",
      "english_name": "Lapis lazuli color",
      "romanized_name": "Ruri-iro",
      "original_name": "瑠璃色"
    }
  }
]