List skills

GET
/api/portfolio/skills

Returns all skill categories, each containing the individual skills and their associated metadata such as icon and display colour.

Response Body

application/json

curl -X GET "https://loading/api/portfolio/skills"
[
  {
    "category": "string",
    "skills": [
      {
        "name": "string",
        "portfolio": true,
        "slug": "string",
        "hex": "string",
        "svg_url": "string",
        "source": "simpleicons"
      }
    ]
  }
]