For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Logo
DocumentationAPI ReferenceChangelog
DocumentationAPI ReferenceChangelog
  • API Reference
      • GETGet Research Objects
      • POSTCreate a Research Object
      • POSTCreate a Brainstorm Session
      • GETGet a Research Object
      • GETGet Research Result Content
      • GETGet Research Events
      • GETGet API research integrations
      • GETGet Research Updates
      • POSTCreate a Research Update
API ReferenceResearch

Get API research integrations

GET
https://api.caesar.xyz/research/:id/http_requests
GET
/research/:id/http_requests
$curl https://api.caesar.xyz/research/id/http_requests \
> -H "Authorization: Bearer <token>"
1[
2 {
3 "ask_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
4 "url": "https://api.financialmodelingprep.com/v3/stock/list",
5 "http_logs": [
6 {
7 "id": "7c9e6679-7425-40de-944b-e07fc1f90ae7",
8 "request_url": "https://api.financialmodelingprep.com/v3/stock/list?apikey=demo",
9 "request_method": "GET",
10 "response_status": 200,
11 "duration_ms": 345,
12 "request_headers": "Accept: application/json\nUser-Agent: ResearchClient/1.0",
13 "request_body": "",
14 "response_headers": "Content-Type: application/json; charset=utf-8\nCache-Control: no-cache",
15 "response_body": "[{\"symbol\":\"AAPL\",\"name\":\"Apple Inc.\"},{\"symbol\":\"MSFT\",\"name\":\"Microsoft Corporation\"}]"
16 }
17 ],
18 "results_index": 1,
19 "provider": "fmp",
20 "provider_display_name": "Financial Modeling Prep",
21 "provider_icon": "https://financialmodelingprep.com/favicon.ico"
22 }
23]

Get API integration HTTP requests linked to research results. If the results_index field is included in the response, it means that the http request is included in the research results array and that the result of this http request is directly used to synthesize the research result, otherwise it is omitted. Returns the API integration HTTP requests linked to research results organized by source

Built with

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path parameters

idstringRequiredformat: "uuid"
Research job identifier.

Query parameters

providerstringOptional

Filter results by provider name (e.g., “tavily”, “fmp”).

Response

List of HTTP request logs organized by source.
ask_idstringformat: "uuid"
Research job identifier.
urlstringformat: "uri"
The source URL associated with these HTTP requests.
http_logslist of objects

List of HTTP request/response logs for this source.

results_indexinteger or null>=1

Position in the research results array (1-based). Null for requests not directly tied to a result.

providerstring or null

Provider identifier (e.g., “tavily”, “fmp”, “exa”).

provider_display_namestring or null

Human-readable provider name (e.g., “Tavily”, “Financial Modeling Prep”).

provider_iconstring or nullformat: "uri"
URL to the provider's icon image.

Errors

401
Unauthorized Error
404
Not Found Error
500
Internal Server Error