{"id":15091128,"url":"https://github.com/tryagi/firecrawl","last_synced_at":"2025-04-12T07:10:58.308Z","repository":{"id":255878778,"uuid":"853515755","full_name":"tryAGI/Firecrawl","owner":"tryAGI","description":"Generated C# SDK based on official Firecrawl OpenAPI specification","archived":false,"fork":false,"pushed_at":"2025-03-24T10:40:02.000Z","size":455,"stargazers_count":3,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-26T02:22:49.438Z","etag":null,"topics":["ai","crawler","crawling","dotnet","firecrawl","generated","generator","langchain","langchain-dotnet","net8","netframework","netstandard","openapi","scrape","scraping","sdk"],"latest_commit_sha":null,"homepage":"https://tryagi.github.io/Firecrawl/","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tryAGI.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"HavenDV","patreon":"havendv","ko_fi":"havendv","custom":["https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"]}},"created_at":"2024-09-06T20:12:35.000Z","updated_at":"2025-03-23T04:36:30.000Z","dependencies_parsed_at":"2024-10-14T05:01:11.773Z","dependency_job_id":"15316a27-cb51-4050-ad1f-6f947f497cfb","html_url":"https://github.com/tryAGI/Firecrawl","commit_stats":{"total_commits":23,"total_committers":3,"mean_commits":7.666666666666667,"dds":0.3913043478260869,"last_synced_commit":"bebe1888cf8c306a04c46ee08665d7366bdd59fb"},"previous_names":["tryagi/firecrawl"],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FFirecrawl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FFirecrawl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FFirecrawl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tryAGI%2FFirecrawl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tryAGI","download_url":"https://codeload.github.com/tryAGI/Firecrawl/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248530575,"owners_count":21119600,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ai","crawler","crawling","dotnet","firecrawl","generated","generator","langchain","langchain-dotnet","net8","netframework","netstandard","openapi","scrape","scraping","sdk"],"created_at":"2024-09-25T10:35:47.279Z","updated_at":"2025-04-12T07:10:58.279Z","avatar_url":"https://github.com/tryAGI.png","language":"C#","funding_links":["https://github.com/sponsors/HavenDV","https://patreon.com/havendv","https://ko-fi.com/havendv","https://www.paypal.me/havendv","https://www.buymeacoffee.com/havendv","https://donate.stripe.com/00gfZ19zkeKLh1eaEE","https://www.upwork.com/freelancers/~017b1ad6f6af9cc189"],"categories":[],"sub_categories":[],"readme":"# Firecrawl\n\n[![Nuget package](https://img.shields.io/nuget/vpre/Firecrawl)](https://www.nuget.org/packages/Firecrawl/)\n[![dotnet](https://github.com/tryAGI/Firecrawl/actions/workflows/dotnet.yml/badge.svg?branch=main)](https://github.com/tryAGI/Firecrawl/actions/workflows/dotnet.yml)\n[![License: MIT](https://img.shields.io/github/license/tryAGI/Firecrawl)](https://github.com/tryAGI/Firecrawl/blob/main/LICENSE.txt)\n[![Discord](https://img.shields.io/discord/1115206893015662663?label=Discord\u0026logo=discord\u0026logoColor=white\u0026color=d82679)](https://discord.gg/Ca2xhfBf3v)\n\n## Features 🔥\n- Fully generated C# SDK based on [official Firecrawl OpenAPI specification](https://raw.githubusercontent.com/mendableai/firecrawl/main/apps/api/v1-openapi.json) using [AutoSDK](https://github.com/tryAGI/AutoSDK)\n- Same day update to support new features\n- Updated and supported automatically if there are no breaking changes\n- All modern .NET features - nullability, trimming, NativeAOT, etc.\n- Support .Net Framework/.Net Standard 2.0\n\n### Usage\n```csharp\nusing Firecrawl;\n\nusing var api = new FirecrawlApp(apiKey);\n\n// Scrape\nvar response = await api.Scraping.ScrapeAndExtractFromUrlAsync(\"https://docs.firecrawl.dev/features/scrape\");\n\nstring markdown = response.Data.Markdown;\n\n// Crawl\nvar response = await api.Crawling.CrawlUrlsAsync(\n    url: \"https://docs.firecrawl.dev/\",\n    limit: 3,\n    scrapeOptions: new CrawlUrlsRequestScrapeOptions\n    {\n        OnlyMainContent = true,\n    });\n\nvar jobResponse = await api.Crawling.WaitJobAsync(\n    jobId: response.JobId);\n\nforeach (var data in jobResponse.Data)\n{\n    Console.WriteLine($\"URL: {data.Metadata.SourceURL}\");\n    Console.WriteLine($\"Output file: {data.Markdown}\");\n}\n```\n\n### CLI\n```bash\ndotnet tool install -g Firecrawl.Cli\nfirecrawl auth \u003cAPI_KEY\u003e\nfirecrawl scrape https://docs.firecrawl.dev/features/scrape // saves it to output.md\nfirecrawl crawl https://docs.firecrawl.dev/ --limit 5 // saves all .md files to docs.firecrawl.dev folder\n```\n\n## Support\n\nPriority place for bugs: https://github.com/tryAGI/Firecrawl/issues  \nPriority place for ideas and general questions: https://github.com/tryAGI/Firecrawl/discussions  \nDiscord: https://discord.gg/Ca2xhfBf3v  \n\n## Acknowledgments\n\n![JetBrains logo](https://resources.jetbrains.com/storage/products/company/brand/logos/jetbrains.png)\n\nThis project is supported by JetBrains through the [Open Source Support Program](https://jb.gg/OpenSourceSupport).\n\n![CodeRabbit logo](https://opengraph.githubassets.com/1c51002d7d0bbe0c4fd72ff8f2e58192702f73a7037102f77e4dbb98ac00ea8f/marketplace/coderabbitai)\n\nThis project is supported by CodeRabbit through the [Open Source Support Program](https://github.com/marketplace/coderabbitai).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Ffirecrawl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftryagi%2Ffirecrawl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftryagi%2Ffirecrawl/lists"}