Skip to content

Commit 4322fa7

Browse files
committed
update docs navigation and add v1 to v2 transition guide
Refine the docs IA by removing the integrations drawer section and introducing a dedicated transition guide page for users migrating from v1 to v2. Made-with: Cursor
1 parent b410028 commit 4322fa7

45 files changed

Lines changed: 178 additions & 515 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

api-reference/endpoint/smartcrawler/start.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ sha256={your_webhook_secret}
229229

230230
To verify that a webhook request is authentic:
231231

232-
1. Retrieve your webhook secret from the [dashboard](https://scrapegrphai.com/dashboard)
232+
1. Retrieve your webhook secret from the [dashboard](https://scrapegraphai.com/dashboard)
233233
2. Compare the `X-Webhook-Signature` header value with `sha256={your_secret}`
234234

235235
<CodeGroup>
@@ -305,5 +305,5 @@ The webhook POST request contains the following JSON payload:
305305
| result | string | The crawl result data (null if failed) |
306306

307307
<Note>
308-
Make sure to configure your webhook secret in the [dashboard](https://scrapegrphai.com/dashboard) before using webhooks. Each user has a unique webhook secret for secure verification.
308+
Make sure to configure your webhook secret in the [dashboard](https://scrapegraphai.com/dashboard) before using webhooks. Each user has a unique webhook secret for secure verification.
309309
</Note>

api-reference/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The ScrapeGraphAI API provides powerful endpoints for AI-powered web scraping an
99

1010
## Authentication
1111

12-
All API requests require authentication using an API key. You can get your API key from the [dashboard](https://scrapegrphai.com/dashboard).
12+
All API requests require authentication using an API key. You can get your API key from the [dashboard](https://scrapegraphai.com/dashboard).
1313

1414
```bash
1515
SGAI-APIKEY: your-api-key-here

cookbook/introduction.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Each example is available in multiple implementations:
8787
4. Experiment and adapt the code for your needs
8888

8989
<Note>
90-
Make sure to have your ScrapeGraphAI API key ready. Get one from the [dashboard](https://scrapegrphai.com/dashboard) if you haven't already.
90+
Make sure to have your ScrapeGraphAI API key ready. Get one from the [dashboard](https://scrapegraphai.com/dashboard) if you haven't already.
9191
</Note>
9292

9393
## Additional Resources

dashboard/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The ScrapeGraphAI dashboard is your central hub for managing all your web scrapi
2828

2929
## Getting Started
3030

31-
1. Log in to your [dashboard](https://scrapegrphai.com/dashboard)
31+
1. Log in to your [dashboard](https://scrapegraphai.com/dashboard)
3232
2. View your API key in the settings section
3333
3. Check your available credits
3434
4. Start your first scraping job

docs.json

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
"pages": [
2323
"introduction",
2424
"install",
25+
"transition",
2526
{
2627
"group": "Use Cases",
2728
"pages": [
@@ -92,17 +93,6 @@
9293
"sdks/mocking"
9394
]
9495
},
95-
{
96-
"group": "Integrations",
97-
"pages": [
98-
"integrations/langchain",
99-
"integrations/llamaindex",
100-
"integrations/crewai",
101-
"integrations/agno",
102-
"integrations/vercel_ai",
103-
"integrations/google-adk"
104-
]
105-
},
10696
{
10797
"group": "LLM SDKs & Frameworks",
10898
"pages": [
@@ -340,8 +330,8 @@
340330
}
341331
},
342332
"logo": {
343-
"light": "https://raw.githubusercontent.com/ScrapeGraphAI/docs-mintlify/main/logo/light.svg",
344-
"dark": "https://raw.githubusercontent.com/ScrapeGraphAI/docs-mintlify/main/logo/dark.svg",
333+
"light": "/logos/logo-light.svg",
334+
"dark": "/logos/logo-dark.svg",
345335
"href": "https://docs.scrapegraphai.com"
346336
},
347337
"background": {
@@ -378,7 +368,7 @@
378368
"primary": {
379369
"type": "button",
380370
"label": "Dashboard",
381-
"href": "https://scrapegrphai.com/dashboard"
371+
"href": "https://scrapegraphai.com/dashboard"
382372
}
383373
},
384374
"footer": {

favicon.svg

Lines changed: 15 additions & 145 deletions
Loading

install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: 'Install and get started with ScrapeGraphAI v2 SDKs'
55

66
## Prerequisites
77

8-
- Obtain your **API key** by signing up on the [ScrapeGraphAI Dashboard](https://scrapegrphai.com/dashboard)
8+
- Obtain your **API key** by signing up on the [ScrapeGraphAI Dashboard](https://scrapegraphai.com/dashboard)
99

1010
---
1111

integrations/claude-code-skill.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export SGAI_API_KEY="sgai-..."
6060
```
6161

6262
<Note>
63-
Get your API key from the [dashboard](https://scrapegrphai.com/dashboard).
63+
Get your API key from the [dashboard](https://scrapegraphai.com/dashboard).
6464
</Note>
6565

6666
## What's Included

integrations/crewai.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ SCRAPEGRAPH_API_KEY=your_api_key_here
100100
```
101101

102102
<Note>
103-
Get your API key from the [dashboard](https://scrapegrphai.com/dashboard)
103+
Get your API key from the [dashboard](https://scrapegraphai.com/dashboard)
104104
</Note>
105105

106106
## Use Cases

integrations/google-adk.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ SGAI_API_KEY = "your-api-key-here"
8484
```
8585

8686
<Note>
87-
Get your API key from the [dashboard](https://scrapegrphai.com/dashboard)
87+
Get your API key from the [dashboard](https://scrapegraphai.com/dashboard)
8888
</Note>
8989

9090
## Tool Filtering

0 commit comments

Comments
 (0)