Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contributing/guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ sidebarTitle: "Running Locally"

This guide walks you through running the Firecrawl API server on your local machine. Follow these steps to set up the development environment, start the services, and send your first request.

If you're contributing, the process follows standard open-source conventions: fork the repo, make changes, run tests, and open a pull request. For questions or help getting started, reach out to help@firecrawl.com or [submit an issue](https://github.com/mendableai/firecrawl/issues).
If you're contributing, the process follows standard open-source conventions: fork the repo, make changes, run tests, and open a pull request. For questions or help getting started, reach out to help@firecrawl.com or [submit an issue](https://github.com/firecrawl/firecrawl/issues).

## Prerequisites

Expand Down
4 changes: 2 additions & 2 deletions features/search-v0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The response will be similar to the one shown in the curl command above.
#### Installing Go SDK

```bash
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

#### Search a query
Expand All @@ -118,7 +118,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func (fc *FirecrawlClient) Search(query string, limit int) ([]byte, error) {
```

<Note>
A [community Go SDK](https://github.com/mendableai/firecrawl-go) is available for the v1 API. See the [Go SDK docs](/sdks/go) for details.
A [community Go SDK](https://github.com/firecrawl/firecrawl-go) is available for the v1 API. See the [Go SDK docs](/sdks/go) for details.
</Note>

## Next steps
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/crawl/base/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/crawl/fast/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package main
import (
"fmt"
"log"
"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/installation/go.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
```bash Go
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```
2 changes: 1 addition & 1 deletion snippets/v1/map/base/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/scrape-and-crawl/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import (
"fmt"
"log"
"github.com/google/uuid"
"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func ptr[T any](v T) *T {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/scrape/base/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v1/scrape/fast/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion snippets/v2/search/base/output.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
{
"url": "https://github.com/firecrawl/firecrawl",
"title": "mendableai/firecrawl: Turn entire websites into LLM-ready ... - GitHub",
"title": "firecrawl/firecrawl: Turn entire websites into LLM-ready ... - GitHub",
"description": "Firecrawl is an API service that takes a URL, crawls it, and converts it into clean markdown or structured data.",
"position": 2
},
Expand Down
4 changes: 2 additions & 2 deletions v0/advanced-scraping-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev');
```

```go Go
// go get github.com/mendableai/firecrawl-go
// go get github.com/firecrawl/firecrawl-go

import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions v0/features/crawl.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ npm install @mendable/firecrawl-js
```

```go Go
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

```toml Rust
Expand Down Expand Up @@ -96,7 +96,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion v0/features/extract.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions v0/features/scrape.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ npm install @mendable/firecrawl-js
```

```go Go
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

```toml Rust
Expand Down Expand Up @@ -84,7 +84,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
8 changes: 4 additions & 4 deletions v0/introduction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ npm install @mendable/firecrawl-js
```

```bash Go
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

```toml Rust
Expand Down Expand Up @@ -101,7 +101,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down Expand Up @@ -266,7 +266,7 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev');
import (
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down Expand Up @@ -401,7 +401,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

app, err := NewFirecrawlApp(TEST_API_KEY, API_URL)
Expand Down
4 changes: 2 additions & 2 deletions v0/sdks/go.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ og:description: "Firecrawl Go SDK is a wrapper around the Firecrawl API to help
To install the Firecrawl Go SDK, you can use go get:

```bash
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

## Usage
Expand All @@ -29,7 +29,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions v1/advanced-scraping-guide.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ const content = await app.scrapeUrl('https://docs.firecrawl.dev');
```

```go Go
// go get github.com/mendableai/firecrawl-go
// go get github.com/firecrawl/firecrawl-go

import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions v1/features/search-v0.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ The response will be similar to the one shown in the curl command above.
#### Installing Go SDK

```bash
go get github.com/mendableai/firecrawl-go
go get github.com/firecrawl/firecrawl-go
```

#### Search a query
Expand All @@ -118,7 +118,7 @@ import (
"fmt"
"log"

"github.com/mendableai/firecrawl-go"
"github.com/firecrawl/firecrawl-go"
)

func main() {
Expand Down