Attributes API

This request returns the attributes for the various search fields

This request returns the attributes for the various search fields

POST /search/attributes

The cost is credits

Request Body

NameTypeDescription

type*

String

The type of attribute to search for [industry | jobtitle | role | technology]

search

String

The term to search for

Expected Request Body

{
  "type": "industry",
  "search": "health"
}

Expected Response

{
  "data": [
    {
      "id": 10005,
      "order": "10005.00000000000000000000",
      "Name": "hospital & health care",
      "Type": "industry"
    },
    {
      "id": 10018,
      "order": "10018.00000000000000000000",
      "Name": "health, wellness and fitness",
      "Type": "industry"
    },
    {
      "id": 10061,
      "order": "10061.00000000000000000000",
      "Name": "mental health care",
      "Type": "industry"
    },
    {
      "id": 10154,
      "order": "10154.00000000000000000000",
      "Name": "health, wellness & fitness",
      "Type": "industry"
    }
  ]
}

Last updated