Get list of available industries, technologies and regions

GET /v2/data-fields

Provides a list of all industries and industry categories, technologies and regions searchable by Ocean.io.

Responses

  • 200 application/json

    Successful Response

    Hide response attributes Show response attributes object
    • industries array[object]

      List of industries

      Hide industries attributes Show industries attributes object
    • technologies array[object]

      List of technologies

      Hide technologies attributes Show technologies attributes object
    • regions object

      List of regions per country

      Hide regions attribute Show regions attribute object
      • * array[object] Additional properties
        Hide * attributes Show * attributes object
    • seniorities array[string]

      List of seniorities computed from the job title of the person

      Values are Owner, Founder, Board Member, C-Level, Partner, VP, Head, Director, Manager, or Other.

    • departments array[string]

      List of departments computed from the job title of the person

      Values are Accounting and Finance, Board, Business Support, Customer Relations, Design, Editorial Personnel, Engineering, Founder/Owner, Healthcare, HR, Legal, Management, Manufacturing, Marketing and Advertising, Operations, PR and Communications, Procurement, Product, Quality Control, R&D, Sales, Security, Supply Chain, or Other.

  • Not found

  • 422 application/json

    Validation Error

    Hide response attribute Show response attribute object
    • detail array[object]
      Hide detail attributes Show detail attributes object
GET /v2/data-fields
curl \
 -X GET https://api.ocean.io/v2/data-fields?apiToken=string
Response examples (200)
{
  "industries": [
    {
      "industries": [
        "Advertising Platforms",
        "Biopharma"
      ],
      "industryCategory": "Administrative Services"
    }
  ],
  "technologies": [
    {
      "name": "ChatStack",
      "categories": [
        "Chat"
      ]
    }
  ],
  "regions": {
    "us": [
      {
        "code": "AL",
        "name": "Alabama"
      }
    ]
  },
  "seniorities": [
    "C-Level",
    "Manager"
  ],
  "departments": [
    "Management",
    "Marketing and Advertising"
  ]
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}