Skip to main content

Nuxt

Use Firecrawl with Nuxt to scrape, search, and interact with web data in your Vue application.
1 min read

Prerequisites#

Install the SDK#

Add your API key to .env:

Search the web#

Create server/api/search.post.ts:

Call it from a Vue component:

Scrape a page#

Create server/api/scrape.post.ts:

Call it from a Vue component:

Interact with a page#

Create server/api/interact.post.ts:

Next steps#