[firecrawl-ui] Complete Firecrawl v2 API coverage (deep research, llms.txt, billing, batch/crawl/extract controls)#85
Open
obeone wants to merge 14 commits into
Open
[firecrawl-ui] Complete Firecrawl v2 API coverage (deep research, llms.txt, billing, batch/crawl/extract controls)#85obeone wants to merge 14 commits into
obeone wants to merge 14 commits into
Conversation
…awls and extract-status adapters
Owner
Author
|
@claude Please verify in the official documentation if these endpoints exists |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Completes UI + service-adapter coverage for the remaining Firecrawl v2 API surface. Every v2 operation now has a wired adapter in
src/services/firecrawl.tsand a corresponding UI.New views:
/research) —POST /v2/deep-research+ status polling, live activities, sources, final analysis, Markdown/JSON download./llmstxt) —POST /v2/llmstxt+ status polling, rendersllmstxt/llmsfulltxtwith downloads./billing) — credit usage + Extract token usage (GET /v2/team/credit-usage,GET /v2/team/token-usage).Extended existing views:
DELETE /v2/batch/scrape/{id}) and error reporting (.../errors).GET /v2/crawl/active), cancel, crawl error report.GET /v2/extract/{id}).Wiring: routes added in
src/router/index.ts, feature cards added tosrc/views/HomeView.vue.Test plan
npx prettier --check "src/**/*.{ts,vue}"— cleannpx eslint src— cleannpm run build— succeeds (138 modules transformed)/research,/llmstxt,/billing) and the cancel/errors/active/resume controls with a valid API key in localStorage.Note: no automated tests exist in this project (
npm testis a no-op); type-checking relies on eslint + the Vite build, as elsewhere in the repo.