Autocomplete

Autocomplete skills

Auto complete the skill search.

POST
/v2/autocomplete/skills

Query Parameters

apiToken?string | null

Header Parameters

x-api-token?string | null
querystring

Beginning of the skill name

Example"python"
limit?integer

Number of skills to return. Default is 5 if not specified, maximum is 15.

Default5
Example5
Range1 <= value <= 15

Response Body

curl -X POST "https://api.ocean.io/v2/autocomplete/skills?apiToken=string" \
  -H "x-api-token: string" \
  -H "Content-Type: application/json" \
  -d '{
    "query": "python"
  }'
{
  "skills": "Python"
}
{
  "detail": "Conflicting API tokens provided in query parameters and headers"
}
{
  "detail": "Insufficient credits"
}
{
  "detail": "API token should be provided in headers or query parameters"
}
Empty
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}