mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-08-13 04:18:59 +08:00
Merge pull request #1436 from mendableai/feat/increase-search-limit
feat(api/search): add search endpoint and update request limits
This commit is contained in:
commit
45efe3fd46
@ -120,3 +120,14 @@ content-type: application/json
|
|||||||
GET {{baseUrl}}/v1/llmstxt/{{generateLlmsTxtId}} HTTP/1.1
|
GET {{baseUrl}}/v1/llmstxt/{{generateLlmsTxtId}} HTTP/1.1
|
||||||
Authorization: Bearer {{$dotenv TEST_API_KEY}}
|
Authorization: Bearer {{$dotenv TEST_API_KEY}}
|
||||||
|
|
||||||
|
|
||||||
|
### Search
|
||||||
|
# @name search
|
||||||
|
POST {{baseUrl}}/v1/search HTTP/1.1
|
||||||
|
Authorization: Bearer {{$dotenv TEST_API_KEY}}
|
||||||
|
content-type: application/json
|
||||||
|
|
||||||
|
{
|
||||||
|
"query": "firecrawl",
|
||||||
|
"limit": 50
|
||||||
|
}
|
||||||
|
@ -969,7 +969,7 @@ export const searchRequestSchema = z
|
|||||||
.positive()
|
.positive()
|
||||||
.finite()
|
.finite()
|
||||||
.safe()
|
.safe()
|
||||||
.max(20)
|
.max(50)
|
||||||
.optional()
|
.optional()
|
||||||
.default(5),
|
.default(5),
|
||||||
tbs: z.string().optional(),
|
tbs: z.string().optional(),
|
||||||
|
@ -70,7 +70,7 @@ async function _req(
|
|||||||
export async function googleSearch(
|
export async function googleSearch(
|
||||||
term: string,
|
term: string,
|
||||||
advanced = false,
|
advanced = false,
|
||||||
num_results = 7,
|
num_results = 5,
|
||||||
tbs = undefined as string | undefined,
|
tbs = undefined as string | undefined,
|
||||||
filter = undefined as string | undefined,
|
filter = undefined as string | undefined,
|
||||||
lang = "en",
|
lang = "en",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user