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.

  • 403 application/json

    Forbidden

    Hide response attribute Show response attribute object
    • detail string Required

      Value is Current API token is not registered in our database.

  • 402 application/json

    Payment Required

    Hide response attribute Show response attribute object
    • detail string Required

      Values are Insufficient email credits, Some email verifications are already in progress and might use all your remaining email credits. Please try again later., Insufficient phone credits, or Some phone verifications are already in progress and might use all your remaining phone credits. Please try again later..

  • 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 (403)
{
  "detail": "Current API token is not registered in our database"
}
Response examples (402)
{
  "detail": "Insufficient email credits"
}
Response examples (422)
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}