These documents are being deprecated and replaced by the Aiera Platform

Research

Search research

Semantic search within research document chunks using hybrid neural and keyword search.


ParameterTypeDataTypeDescription
searchquerystringRequired. Search query text
document_idsquerystringComma-separated document IDs to limit search scope
start_datequerystringISO format start date filter
end_datequerystringISO format end date filter
author_idsquerystringComma-separated author person IDs
aiera_provider_idsquerystringComma-separated provider IDs
max_resultsqueryintegerMaximum results to return (default: 20, max: 50)
search_afterquerystringPagination cursor

NOTE

  • Authentication requires a user-level API key with research entitlements.
  • Uses hybrid neural + keyword search for high-quality results.
  • Uses cursor-based pagination via search_after. Pass next_search_after from the previous response to fetch the next page.
  • Results are sorted by relevance score descending.

Request

https://premium.aiera.com/api/research-v1/search?search=AI%20chip%20demand&max_results=5

Response

{
  "params": {
    "query_text": "AI chip demand",
    "max_results": 5
  },
  "pagination": {
    "total": 128,
    "page_size": 5,
    "has_next_page": true,
    "next_search_after": "0.85,chunk_456"
  },
  "data": [
    {
      "score": 0.92,
      "document_id": "doc_001",
      "page": 3,
      "page_count": 24,
      "title": "Semiconductor Outlook 2025",
      "text": "AI chip demand is expected to double by 2026...",
      "aiera_provider_id": "provider_001",
      "authors": [
        {
          "name": "Jane Smith",
          "author_id": "author_001"
        }
      ],
      "organization_name": "Example Research",
      "organization_type": "SellSideFirm",
      "product_category": "Report",
      "product_focus": "Issuer",
      "published_datetime": "2025-06-15T10:30:00Z",
      "language": "eng",
      "research_id": "res_001"
    }
  ]
}

Code Samples

Bash

curl --request GET \
  --url 'https://premium.aiera.com/api/research-v1/search?search=AI%20chip%20demand&max_results=5' \
  --header 'X-API-Key: xxx'

Python

import requests
requests.request("GET", "https://premium.aiera.com/api/research-v1/search", params={"search": "AI chip demand", "max_results": 5}, headers={"X-API-Key": "xxx"})
Previous
Get Research