Research

Get research region types

List available research region types with document counts.


GET /research-v1/region-types

ParameterTypeDataTypeDescription
searchquerystringCase-insensitive wildcard filter on region type (e.g. euro matches European)
pagequeryintegerPage number (default: 1)
page_sizequeryintegerItems per page (default: 50, max: 100)

NOTE

  • Authentication requires a user-level API key with research entitlements.
  • Uses page-based pagination.
  • Search filtering uses wildcard matching (not partial string match like other facets).

Request

https://premium.aiera.com/api/research-v1/region-types

Response

{
  "pagination": {
    "total_count": 10,
    "current_page": 1,
    "total_pages": 1,
    "page_size": 10
  },
  "data": [
    {
      "region_type": "Americas",
      "doc_count": 8900
    },
    {
      "region_type": "European",
      "doc_count": 5200
    }
  ]
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/research-v1/region-types' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.request("GET", "https://premium.aiera.com/api/research-v1/region-types", headers={"X-API-Key": "xxx"})
Previous
Get Discipline Types