Vantyx Crawl · Learn

Getting started with Vantyx Crawl

Getting started with Vantyx Crawl

Vantyx Crawl is a Firecrawl-compatible web data API that lets you scrape pages, crawl sites, search the web, and extract structured data for AI applications. This guide walks you through your first steps so you can start pulling data in minutes.

1. Create an account

Sign up at Vantyx Crawl to get your API key. The dashboard gives you access to usage metrics, project settings, and documentation references all in one place.

2. Set up authentication

Vantyx Crawl uses a simple API key pattern. Include the key as an Authorization: Bearer <key> header on every request:

3. Make your first request

The scrape endpoint is the fastest way to test the service. It returns clean HTML, markdown, or JSON depending on what you need.

4. Choose your output format

Vantyx Crawl supports multiple response formats so you can pick what fits your pipeline best.

5. Handle pagination and rate limits

When crawling large sites, Vantyx Crawl returns paginated results. Use the cursor parameter to fetch subsequent pages without losing progress.

6. Integrate into your workflow

Vantyx Crawl works well with popular tools and frameworks.

7. Monitor and optimize

Your dashboard shows real-time usage stats, error rates, and response times. Use these metrics to:

Common use cases

Vantyx Crawl powers a wide range of applications.

Troubleshooting tips

If you run into issues during setup, check these common causes.

Next steps

Now that you've set up Vantyx Crawl, explore the full API reference for detailed parameter descriptions. You can also visit Vantyx Crawl to learn about pricing tiers and advanced features like scheduled crawls and team collaboration.

FAQ

How do I get my Vantyx Crawl API key?

Sign up at Vantyx Crawl and navigate to the dashboard. Your API key is displayed in the settings panel where you can also regenerate it if needed.

What output formats does Vantyx Crawl support?

Vantyx Crawl supports markdown, HTML, JSON, and custom extracted schemas. Choose the format that best fits your downstream processing pipeline.

How do I crawl a website with multiple pages?

Use the /v1/crawl endpoint with a seed URL, set your desired depth level, and specify max pages to control how many links are followed. Results come back paginated using cursor-based pagination.

Can I use Vantyx Crawl with LangChain?

Yes. The scrape endpoint works as a document loader in LangChain pipelines, making it easy to feed scraped content into RAG applications or other AI workflows.