Skip to main content
POST
/
verticals
/
categories
cURL
curl --request POST \
  --url https://api.pubrio.com/verticals/categories \
  --header 'Content-Type: application/json' \
  --header 'pubrio-api-key: <api-key>' \
  --data '{
  "keyword": "<string>"
}'
{
  "data": [
    {
      "vertical_category_id": 6,
      "gics_sector_code": 25,
      "gics_industry_group_code": 2510,
      "vertical_category_identifier": "d968669f-9379-4027-98d9-f4df49da1d4d",
      "description": null,
      "slug": "automobiles-components",
      "name": "Automobiles & Components",
      "name_en": "Automobiles & Components"
    },
    "..."
  ]
}

Authorizations

pubrio-api-key
string
header
required

A unique API token that represents the actions you perform through the API and the corresponding permissions and operations. You can create it through the Settings section.

Body

application/json
keyword
string

Search item by keyword. If you want to get the first few (but not all) items, leave them blank.

Response

Successful response containing vertical category details.

data
object[] | null

Response info depends on specific endpoint.