Document Search
Search across filing documents using semantic or keyword search.
Endpoint
POST /search/documentsParameters
Parameter
Type
Required
Description
query
string
Yes
Search query (natural language or keywords)
orbit_entity_id
string[]
No
Limit to specific companies
report_type
string[]
No
Limit to specific report types
date_range
object
No
{"start": "2024-01-01", "end": "2024-12-31"}
search_type
string
No
semantic, keyword, hybrid (default: hybrid)
limit
integer
No
Max results (default: 20, max: 20)
Example Request
bash
curl -X POST "https://api.orbitfin.ai/v1/search/documents" \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"query": "artificial intelligence investments",
"orbit_entity_id": ["ent_2vxp8q3n", "ent_7kms9p2w"],
"search_type": "semantic",
"limit": 10
}'Response
json
Last updated