Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.corsair.dev/llms.txt

Use this file to discover all available pages before exploring further.

The Tavily plugin syncs data locally. Use corsair.tavily.db.<entity>.search({ data, limit?, offset? }) with the filters listed per entity.

Crawl Results

Path: tavily.db.crawlResults.search
const rows = await corsair.tavily.db.crawlResults.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
urlstringequals, contains, startsWith, endsWith, in
raw_contentstringequals, contains, startsWith, endsWith, in
faviconstringequals, contains, startsWith, endsWith, in
baseUrlstringequals, contains, startsWith, endsWith, in
crawledAtdateequals, before, after, between
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Extract Results

Path: tavily.db.extractResults.search
const rows = await corsair.tavily.db.extractResults.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
urlstringequals, contains, startsWith, endsWith, in
raw_contentstringequals, contains, startsWith, endsWith, in
faviconstringequals, contains, startsWith, endsWith, in
extractedAtdateequals, before, after, between
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Map Results

Path: tavily.db.mapResults.search
const rows = await corsair.tavily.db.mapResults.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
urlstringequals, contains, startsWith, endsWith, in
baseUrlstringequals, contains, startsWith, endsWith, in
mappedAtdateequals, before, after, between
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.

Search Results

Path: tavily.db.searchResults.search
const rows = await corsair.tavily.db.searchResults.search({
    data: { /* filters below */ },
    limit: 100,
    offset: 0,
});

Searchable filters

FieldTypeOperators
entity_idstringequals, contains, startsWith, endsWith, in
urlstringequals, contains, startsWith, endsWith, in
titlestringequals, contains, startsWith, endsWith, in
contentstringequals, contains, startsWith, endsWith, in
scorenumberequals, gt, gte, lt, lte, in
raw_contentstringequals, contains, startsWith, endsWith, in
faviconstringequals, contains, startsWith, endsWith, in
querystringequals, contains, startsWith, endsWith, in
searchedAtdateequals, before, after, between
Every .search() also accepts limit and offset for pagination. .list() is available on the same path without the .search suffix in code — see database operations.