Skip to content

Commit b12aa0e

Browse files
committed
Minor copy updates
1 parent 267e86c commit b12aa0e

7 files changed

Lines changed: 23 additions & 24 deletions

File tree

README.md

Lines changed: 16 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ from firecrawl import Firecrawl
9696

9797
app = Firecrawl(api_key="fc-YOUR_API_KEY")
9898

99-
search_result = app.search("firecrawl web scraping", limit=5)
99+
search_result = app.search("firecrawl", limit=5)
100100
```
101101

102102
<details>
@@ -108,7 +108,7 @@ import Firecrawl from '@mendable/firecrawl-js';
108108

109109
const app = new Firecrawl({apiKey: "fc-YOUR_API_KEY"});
110110

111-
app.search("firecrawl web scraping", { limit: 5 })
111+
app.search("firecrawl", { limit: 5 })
112112
```
113113

114114
**cURL**
@@ -117,14 +117,14 @@ curl -X POST 'https://api.firecrawl.dev/v2/search' \
117117
-H 'Authorization: Bearer fc-YOUR_API_KEY' \
118118
-H 'Content-Type: application/json' \
119119
-d '{
120-
"query": "firecrawl web scraping",
120+
"query": "firecrawl",
121121
"limit": 5
122122
}'
123123
```
124124

125125
**CLI**
126126
```bash
127-
firecrawl search "firecrawl web scraping" --limit 5
127+
firecrawl search "firecrawl" --limit 5
128128
```
129129
</details>
130130

@@ -189,14 +189,13 @@ Output:
189189
```
190190
# Firecrawl
191191
192-
Firecrawl is a powerful web scraping tool that makes it easy
193-
to extract clean data from any website.
192+
Firecrawl helps AI systems search, scrape, and interact with the web.
194193
195194
## Features
196-
- Scrape: Markdown from any page
197-
- Search: Search + scrape the web
198-
- Map: Discover all site URLs
199-
- Agent: Extract with AI prompts
195+
- Search: Find information across the web
196+
- Scrape: Clean data from any page
197+
- Interact: Click, navigate, and operate pages
198+
- Agent: Autonomous data gathering
200199
```
201200

202201
### Interact
@@ -316,7 +315,7 @@ See the [Skill + CLI documentation](https://docs.firecrawl.dev/sdks/cli) for all
316315

317316
### Agent
318317

319-
**The easiest way to get data from the web.** Describe what you need, and our AI agent searches, navigates, and extracts it. No URLs required.
318+
**The easiest way to get data from the web.** Describe what you need, and our AI agent searches, navigates, and retrieves it. No URLs required.
320319

321320
Agent is the evolution of our `/extract` endpoint: faster, more reliable, and doesn't require you to know the URLs upfront.
322321
```bash
@@ -390,7 +389,7 @@ Choose between two models based on your needs:
390389
| Model | Cost | Best For |
391390
|-------|------|----------|
392391
| `spark-1-mini` (default) | 60% cheaper | Most tasks |
393-
| `spark-1-pro` | Standard | Complex research, critical extraction |
392+
| `spark-1-pro` | Standard | Complex research, critical data gathering |
394393
```python
395394
result = app.agent(
396395
prompt="Compare enterprise features across Firecrawl, Apify, and ScrapingBee",
@@ -509,7 +508,7 @@ for doc in job.data:
509508

510509
## SDKs
511510

512-
Our SDKs provide a convenient way to interact with all Firecrawl features and automatically handle polling for async operations like crawling and batch scraping.
511+
Our SDKs provide a convenient way to use all Firecrawl features and automatically handle polling for async operations.
513512

514513
### Python
515514

@@ -536,7 +535,7 @@ for doc in docs.data:
536535
print(doc.metadata.source_url, doc.markdown[:100])
537536

538537
# Search the web
539-
results = app.search("best web scraping tools 2024", limit=10)
538+
results = app.search("best AI data tools 2024", limit=10)
540539
print(results)
541540
```
542541

@@ -566,7 +565,7 @@ docs.data.forEach(doc => {
566565
});
567566

568567
// Search the web
569-
const results = await app.search('best web scraping tools 2024', { limit: 10 });
568+
const results = await app.search('best AI data tools 2024', { limit: 10 });
570569
results.data.web.forEach(result => {
571570
console.log(`${result.title}: ${result.url}`);
572571
});
@@ -614,7 +613,7 @@ for (FirecrawlDocument page : job.getData()) {
614613
}
615614

616615
// Search the web
617-
SearchParams searchParams = new SearchParams("best web scraping tools 2024");
616+
SearchParams searchParams = new SearchParams("best AI data tools 2024");
618617
searchParams.setLimit(10);
619618
SearchResponse results = client.search(searchParams);
620619
for (SearchResult r : results.getResults()) {
@@ -647,7 +646,7 @@ end
647646

648647
# Search the web
649648
{:ok, response} = Firecrawl.search_and_scrape(
650-
query: "best web scraping tools 2024",
649+
query: "best AI data tools 2024",
651650
limit: 10
652651
)
653652

apps/java-sdk/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Firecrawl Java SDK
22

3-
Java SDK for the [Firecrawl](https://firecrawl.dev) v2 web scraping API.
3+
Java SDK for [Firecrawl](https://firecrawl.dev) — search, scrape, and interact with the web.
44

55
## Prerequisites
66

@@ -268,7 +268,7 @@ for (Map<String, Object> link : data.getLinks()) {
268268
Search the web and optionally scrape results.
269269

270270
```java
271-
SearchData results = client.search("firecrawl web scraping",
271+
SearchData results = client.search("firecrawl",
272272
SearchOptions.builder()
273273
.limit(10)
274274
.build());

apps/java-sdk/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ mavenPublishing {
4545

4646
pom {
4747
name.set("Firecrawl Java SDK")
48-
description.set("Java SDK for the Firecrawl web scraping API")
48+
description.set("Java SDK for the Firecrawl API")
4949
url.set("https://github.com/firecrawl/firecrawl")
5050

5151
licenses {

apps/js-sdk/firecrawl/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Firecrawl Node SDK
22

3-
The Firecrawl Node SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
3+
The Firecrawl Node SDK is a library that allows you to easily search, scrape, and interact with the web, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for the Firecrawl API.
44

55
## Installation
66

apps/playwright-service-ts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "playwright-scraper-api",
33
"version": "1.0.0",
4-
"description": "scraper api with playwright",
4+
"description": "browser rendering service with playwright",
55
"main": "api.ts",
66
"scripts": {
77
"start": "node dist/api.js",

apps/python-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Firecrawl Python SDK
22

3-
The Firecrawl Python SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
3+
The Firecrawl Python SDK is a library that allows you to easily search, scrape, and interact with the web, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for the Firecrawl API.
44

55
## Installation
66

apps/rust-sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Firecrawl Rust SDK
2-
The Firecrawl Rust SDK is a library that allows you to easily scrape and crawl websites, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for interacting with the Firecrawl API.
2+
The Firecrawl Rust SDK is a library that allows you to easily search, scrape, and interact with the web, and output the data in a format ready for use with language models (LLMs). It provides a simple and intuitive interface for the Firecrawl API.
33

44
## Installation
55

0 commit comments

Comments
 (0)