Search syntax
Operators let you say precisely what you want. Combine them freely in one query.
Operators
"exact phrase"— match an exact phrase.-word— exclude results containing a word.site:example.com— restrict to a single site.
Filtering by file type
Operators compose. To find PDFs on one site, combine site: and filetype::
site:example.com filetype:pdf annual reportUsing the API
The same syntax works through the API:
curl "https://api.neuji.com/v1/search?q=site%3Aexample.com+filetype%3Apdf" \ -H "Authorization: Bearer $NEUJI_API_KEY"
See API keys to get a token.