POST
/
skills
/
related
curl --request POST \
  --url https://public.api.inop.ai/v1/skills/related \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "ids": [
    "12bc945b-bafb-4021-9289-928171296ea1",
    "fccf214c-5215-4f30-ac72-73797d785981",
    "8102bdec-d0da-4c25-bd77-69b5c6151b4f"
  ]
}'
{
  "success": true,
  "messages": "List of related skills",
  "data": [
    {
      "id": "12bc945b-bafb-4021-9289-928171296ea1",
      "name": "Algorithms",
      "type": {
        "name": "Specialized Skill"
      }
    },
    {
      "id": "fccf214c-5215-4f30-ac72-73797d785981",
      "name": "C# (Programming Language)",
      "type": {
        "name": "Specialized Skill"
      }
    },
    {
      "id": "3a51eea5-feec-47e5-bdf2-b8bca3448f94",
      "name": "C++ (Programming Language)",
      "type": {
        "name": "Specialized Skill"
      }
    },
    {
      "id": "e7821270-163b-44ce-b98d-4e71d1e516ae",
      "name": "Debugging",
      "type": {
        "name": "Specialized Skill"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
Returns a list of skills that are related to the requested skills
ids
any[]

Response

200
application/json
Retrieved related skills
success
boolean
default:true
messages
string
default:List of related skills
data
any[]