[{"data":1,"prerenderedAt":2445},["ShallowReactive",2],{"blog-guide-\u002Fblog\u002Fguides\u002Fc-sharp-web-scraping-without-the-stack":3,"blog-guide-related-\u002Fblog\u002Fguides\u002Fc-sharp-web-scraping-without-the-stack":1116},{"id":4,"title":5,"author":6,"body":7,"category":1096,"cover":1097,"description":1098,"draft":1099,"extension":1100,"image":1101,"launchCta":1101,"listingCover":1102,"meta":1103,"navigation":505,"ogImage":1101,"path":1104,"publishedAt":1105,"readTime":1106,"seo":1107,"stem":1108,"tags":1109,"toolCategory":1047,"updatedAt":1105,"__hash__":1115},"blogGuides\u002Fblog\u002Fguides\u002Fc-sharp-web-scraping-without-the-stack.md","C# Web Scraping: Keep HtmlAgilityPack, Drop the Fetch","Jasper Li",{"type":8,"value":9,"toc":1062},"minimark",[10,15,74,86,91,94,99,102,106,109,113,116,120,123,127,135,150,154,157,161,168,172,175,179,182,186,197,201,208,212,301,304,308,311,315,324,332,340,344,401,405,411,416,458,464,470,474,479,489,607,610,635,640,649,653,658,662,690,697,706,716,720,724,727,731,734,737,741,748,752,755,759,762,766,918,927,934,938,941,947,953,963,969,972,975,979,982,988,999,1003,1010,1022,1032,1044,1052,1058],[11,12,14],"p",{"style":13},"font-size:18px !important;line-height:1.65 !important;margin:0 0 24px;color:inherit;","Copy this line to your agent to fetch a page from .NET without maintaining a scraper.",[16,17,22],"pre",{"className":18,"code":19,"language":20,"meta":21,"style":21},"language-sh shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","set up https:\u002F\u002Fmonid.ai\u002FSKILL.md and use context.dev \u002Fweb\u002Fscrape\u002Fmarkdown to fetch pages for a .NET service\n","sh","",[23,24,25],"code",{"__ignoreMap":21},[26,27,30,34,38,41,44,47,50,53,56,59,62,65,68,71],"span",{"class":28,"line":29},"line",1,[26,31,33],{"class":32},"s2Zo4","set",[26,35,37],{"class":36},"sfazB"," up",[26,39,40],{"class":36}," https:\u002F\u002Fmonid.ai\u002FSKILL.md",[26,42,43],{"class":36}," and",[26,45,46],{"class":36}," use",[26,48,49],{"class":36}," context.dev",[26,51,52],{"class":36}," \u002Fweb\u002Fscrape\u002Fmarkdown",[26,54,55],{"class":36}," to",[26,57,58],{"class":36}," fetch",[26,60,61],{"class":36}," pages",[26,63,64],{"class":36}," for",[26,66,67],{"class":36}," a",[26,69,70],{"class":36}," .NET",[26,72,73],{"class":36}," service\n",[11,75,76,77,85],{},"Every article ranking for C# web scraping is a library roundup, and they are correct about the libraries. HtmlAgilityPack and AngleSharp are good, .NET is a perfectly reasonable language for this, and none of that addresses why C# scrapers stop working. They stop because a request left your server and was refused, which is not a parsing problem and not a language problem. This guide keeps the .NET half and replaces the half that was never about .NET, running through ",[78,79,84],"a",{"href":80,"rel":81},"https:\u002F\u002Fmonid.ai",[82,83],"noopener","noreferrer","Monid",", the OpenRouter for agent tools.",[87,88,90],"h2",{"id":89},"what-do-you-use-for-web-scraping-in-c","What do you use for web scraping in C#?",[11,92,93],{},"The honest stack, stated plainly, because the pages ranking for this term have it right.",[95,96,98],"h3",{"id":97},"htmlagilitypack-for-parsing","HtmlAgilityPack for parsing",[11,100,101],{},"The default and still the pragmatic choice. Forgiving about malformed markup, XPath support, and enough of the ecosystem depends on it that it will not disappear. If you are selecting fields out of HTML in .NET, this is where you start.",[95,103,105],{"id":104},"anglesharp-for-standards-correctness","AngleSharp for standards correctness",[11,107,108],{},"A proper HTML5 parser with a DOM that behaves the way a browser's does, and CSS selector support that feels like the front end. Slower to learn, more correct on complicated documents. The FAQ below has the actual selection rule.",[95,110,112],{"id":111},"httpclient-for-the-request","HttpClient for the request",[11,114,115],{},"Built in, fine, and the source of the single most common .NET-specific bug in this domain, which the FAQ covers because it looks exactly like being blocked and is not.",[95,117,119],{"id":118},"playwright-for-net-when-the-page-needs-a-browser","Playwright for .NET when the page needs a browser",[11,121,122],{},"Officially supported, works well, and is the correct tool when the content only exists after JavaScript runs. It is also the heaviest thing on this list and there is a section below about checking whether you need it.",[95,124,126],{"id":125},"what-none-of-them-do","What none of them do",[11,128,129,130,134],{},"Provide an address the target will accept. Every package above runs on your machine, from your IP, and the moment the target starts refusing that IP, no amount of correct parsing helps. That is the gap this article is about and it is the one the roundups do not mention because it is not a library. The four kinds of tool and who has to operate each are sorted in ",[78,131,133],{"href":132},"\u002Fblog\u002Fguides\u002Fweb-scraping-tools-which-kind","Web Scraping Tools: Which Kind Do You Actually Need?",".",[136,137,138],"blockquote",{},[11,139,140,141,145,146],{},"📖 ",[142,143,144],"strong",{},"See also"," ",[78,147,149],{"href":148},"\u002Fblog\u002Fguides\u002Fpython-web-scraping-without-a-scraper","Web Scraping in Python Without Maintaining a Scraper",[87,151,153],{"id":152},"why-does-a-c-scraper-break-and-is-it-the-languages-fault","Why does a C# scraper break, and is it the language's fault?",[11,155,156],{},"No, and that is the useful finding. Sort the failures and none of them is about .NET.",[95,158,160],{"id":159},"it-gets-refused","It gets refused",[11,162,163,164,134],{},"A 403, a challenge page, or a 200 containing something that is not the page. This is a classification decision made about your IP address before anything in your code runs. Rewriting the parser changes nothing. The address is a datacentre address if the service is on a cloud instance, which is the easiest category to refuse, and the economics of changing that are in ",[78,165,167],{"href":166},"\u002Fblog\u002Fguides\u002Fdo-ai-agents-need-a-rotating-proxy","Do You Still Need a Rotating Proxy in 2026?",[95,169,171],{"id":170},"the-content-was-never-there","The content was never there",[11,173,174],{},"An empty selector result because the markup arrives from JavaScript after load. HtmlAgilityPack parsed exactly what it was given, which was a shell. This is a rendering problem and it is the one Playwright genuinely solves.",[95,176,178],{"id":177},"the-markup-moved","The markup moved",[11,180,181],{},"A selector that matched last month and matches nothing now. This is the maintenance cost of owning a parser and it is real, ongoing and unavoidable if the parser is yours.",[95,183,185],{"id":184},"it-looks-like-blocking-and-is-a-socket-bug","It looks like blocking and is a socket bug",[11,187,188,189,192,193,196],{},"Specific to .NET and worth its own line. Creating a new ",[23,190,191],{},"HttpClient"," per request exhausts sockets under load, and the resulting timeouts and connection failures look exactly like rate limiting. Teams reach for proxies to fix a problem that was a ",[23,194,195],{},"using"," statement. The FAQ has the fix.",[95,198,200],{"id":199},"where-the-language-actually-helps","Where the language actually helps",[11,202,203,204,207],{},"Two places, and they are real. .NET's async model and ",[23,205,206],{},"Parallel.ForEachAsync"," make concurrent fetching genuinely pleasant compared to several alternatives, and static typing over a response you have modelled catches schema drift at compile time rather than in production. Neither of those advantages is in the fetching layer, which is the point.",[95,209,211],{"id":210},"own-the-stack-vs-buy-the-fetch-what-actually-differs","Own the stack vs buy the fetch: what actually differs",[213,214,215,231],"table",{},[216,217,218],"thead",{},[219,220,221,225,228],"tr",{},[222,223,224],"th",{},"Aspect",[222,226,227],{},"HttpClient plus a parser",[222,229,230],{},"An endpoint from C#",[232,233,234,246,257,268,279,290],"tbody",{},[219,235,236,240,243],{},[237,238,239],"td",{},"Exit address",[237,241,242],{},"Your server's",[237,244,245],{},"The provider's",[219,247,248,251,254],{},[237,249,250],{},"JavaScript rendering",[237,252,253],{},"Add Playwright, run browsers",[237,255,256],{},"Included",[219,258,259,262,265],{},[237,260,261],{},"Blocked request",[237,263,264],{},"Costs you time and compute",[237,266,267],{},"Not billed",[219,269,270,273,276],{},[237,271,272],{},"Parser maintenance",[237,274,275],{},"Yours, forever",[237,277,278],{},"Theirs",[219,280,281,284,287],{},[237,282,283],{},"Your C# code",[237,285,286],{},"Fetch, retry, parse, model",[237,288,289],{},"Deserialise and model",[219,291,292,295,298],{},[237,293,294],{},"Good for",[237,296,297],{},"Friendly targets, high volume",[237,299,300],{},"Defended targets, bursty volume",[11,302,303],{},"The last row of code is the honest summary: you keep the part that was your product and drop the part that was infrastructure wearing a NuGet package.",[87,305,307],{"id":306},"how-do-you-call-a-fetch-endpoint-from-c","How do you call a fetch endpoint from C#?",[11,309,310],{},"Three steps, two of them free, and the third is ordinary .NET.",[95,312,314],{"id":313},"for-agents","For agents",[11,316,317,318,323],{},"Grab an API key at ",[78,319,322],{"href":320,"rel":321},"https:\u002F\u002Fapp.monid.ai\u002F",[82,83],"app.monid.ai",", then paste this to your agent and hand it the key:",[16,325,330],{"className":326,"code":328,"language":329,"meta":21},[327],"language-text","set up https:\u002F\u002Fmonid.ai\u002FSKILL.md\n","text",[23,331,328],{"__ignoreMap":21},[11,333,334,335,134],{},"It learns the whole discover, inspect, run workflow itself. More in the ",[78,336,339],{"href":337,"rel":338},"https:\u002F\u002Fmonid.ai\u002Fdocs\u002Fguide\u002Fquickstart-skill",[82,83],"agent quickstart",[95,341,343],{"id":342},"for-humans","For humans",[16,345,349],{"className":346,"code":347,"language":348,"meta":21,"style":21},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","npm install -g @monid-ai\u002Fcli\nmonid keys add -k \u003Cyour-api-key> -l main\n","bash",[23,350,351,366],{"__ignoreMap":21},[26,352,353,357,360,363],{"class":28,"line":29},[26,354,356],{"class":355},"sBMFI","npm",[26,358,359],{"class":36}," install",[26,361,362],{"class":36}," -g",[26,364,365],{"class":36}," @monid-ai\u002Fcli\n",[26,367,369,372,375,378,381,385,388,392,395,398],{"class":28,"line":368},2,[26,370,371],{"class":355},"monid",[26,373,374],{"class":36}," keys",[26,376,377],{"class":36}," add",[26,379,380],{"class":36}," -k",[26,382,384],{"class":383},"sMK4o"," \u003C",[26,386,387],{"class":36},"your-api-ke",[26,389,391],{"class":390},"sTEyZ","y",[26,393,394],{"class":383},">",[26,396,397],{"class":36}," -l",[26,399,400],{"class":36}," main\n",[95,402,404],{"id":403},"step-1-read-the-schema-before-writing-a-model-class","Step 1. Read the schema before writing a model class",[11,406,407,410],{},[142,408,409],{},"What it does."," Gives you the exact response shape so your record type matches on the first try rather than after three runs.",[11,412,413],{},[142,414,415],{},"The call.",[16,417,419],{"className":346,"code":418,"language":348,"meta":21,"style":21},"monid discover -q \"fetch a page as clean markdown\"\nmonid inspect -p context.dev -e \u002Fweb\u002Fscrape\u002Fmarkdown\n",[23,420,421,440],{"__ignoreMap":21},[26,422,423,425,428,431,434,437],{"class":28,"line":29},[26,424,371],{"class":355},[26,426,427],{"class":36}," discover",[26,429,430],{"class":36}," -q",[26,432,433],{"class":383}," \"",[26,435,436],{"class":36},"fetch a page as clean markdown",[26,438,439],{"class":383},"\"\n",[26,441,442,444,447,450,452,455],{"class":28,"line":368},[26,443,371],{"class":355},[26,445,446],{"class":36}," inspect",[26,448,449],{"class":36}," -p",[26,451,49],{"class":36},[26,453,454],{"class":36}," -e",[26,456,457],{"class":36}," \u002Fweb\u002Fscrape\u002Fmarkdown\n",[11,459,460,463],{},[142,461,462],{},"What comes back."," The full input and output schema, plus the pricing note. Reading it on 2026-08-31, that note states JavaScript rendering, anti-bot handling and premium proxies are included, and that failed or blocked requests are not billed.",[11,465,466,469],{},[142,467,468],{},"What it costs."," Nothing.",[95,471,473],{"id":472},"step-2-call-it-from-a-typed-client","Step 2. Call it from a typed client",[11,475,476,478],{},[142,477,409],{}," The fetch, from .NET, with none of the infrastructure.",[11,480,481,484,485,488],{},[142,482,483],{},"The code."," An ",[23,486,487],{},"IHttpClientFactory"," client, which is also the fix for the socket problem above:",[16,490,494],{"className":491,"code":492,"language":493,"meta":21,"style":21},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","public sealed record ScrapeResult(string Markdown, int ContentLength);\n\npublic sealed class MonidClient(HttpClient http)\n{\n    public async Task\u003CScrapeResult?> ScrapeAsync(string url, CancellationToken ct)\n    {\n        var body = new { provider = \"context.dev\", endpoint = \"\u002Fweb\u002Fscrape\u002Fmarkdown\",\n                         input = new { queryParams = new { url, useMainContentOnly = true } } };\n\n        using var res = await http.PostAsJsonAsync(\"v1\u002Frun\", body, ct);\n        res.EnsureSuccessStatusCode();\n\n        var run = await res.Content.ReadFromJsonAsync\u003CJsonElement>(cancellationToken: ct);\n        var output = run.GetProperty(\"output\");\n        return new ScrapeResult(\n            output.GetProperty(\"markdown\").GetString() ?? \"\",\n            output.GetProperty(\"contentLength\").GetInt32());\n    }\n}\n","csharp",[23,495,496,501,507,513,519,525,531,537,543,548,554,560,565,571,577,583,589,595,601],{"__ignoreMap":21},[26,497,498],{"class":28,"line":29},[26,499,500],{},"public sealed record ScrapeResult(string Markdown, int ContentLength);\n",[26,502,503],{"class":28,"line":368},[26,504,506],{"emptyLinePlaceholder":505},true,"\n",[26,508,510],{"class":28,"line":509},3,[26,511,512],{},"public sealed class MonidClient(HttpClient http)\n",[26,514,516],{"class":28,"line":515},4,[26,517,518],{},"{\n",[26,520,522],{"class":28,"line":521},5,[26,523,524],{},"    public async Task\u003CScrapeResult?> ScrapeAsync(string url, CancellationToken ct)\n",[26,526,528],{"class":28,"line":527},6,[26,529,530],{},"    {\n",[26,532,534],{"class":28,"line":533},7,[26,535,536],{},"        var body = new { provider = \"context.dev\", endpoint = \"\u002Fweb\u002Fscrape\u002Fmarkdown\",\n",[26,538,540],{"class":28,"line":539},8,[26,541,542],{},"                         input = new { queryParams = new { url, useMainContentOnly = true } } };\n",[26,544,546],{"class":28,"line":545},9,[26,547,506],{"emptyLinePlaceholder":505},[26,549,551],{"class":28,"line":550},10,[26,552,553],{},"        using var res = await http.PostAsJsonAsync(\"v1\u002Frun\", body, ct);\n",[26,555,557],{"class":28,"line":556},11,[26,558,559],{},"        res.EnsureSuccessStatusCode();\n",[26,561,563],{"class":28,"line":562},12,[26,564,506],{"emptyLinePlaceholder":505},[26,566,568],{"class":28,"line":567},13,[26,569,570],{},"        var run = await res.Content.ReadFromJsonAsync\u003CJsonElement>(cancellationToken: ct);\n",[26,572,574],{"class":28,"line":573},14,[26,575,576],{},"        var output = run.GetProperty(\"output\");\n",[26,578,580],{"class":28,"line":579},15,[26,581,582],{},"        return new ScrapeResult(\n",[26,584,586],{"class":28,"line":585},16,[26,587,588],{},"            output.GetProperty(\"markdown\").GetString() ?? \"\",\n",[26,590,592],{"class":28,"line":591},17,[26,593,594],{},"            output.GetProperty(\"contentLength\").GetInt32());\n",[26,596,598],{"class":28,"line":597},18,[26,599,600],{},"    }\n",[26,602,604],{"class":28,"line":603},19,[26,605,606],{},"}\n",[11,608,609],{},"Register it once and the factory handles the socket lifetime for you:",[16,611,613],{"className":491,"code":612,"language":493,"meta":21,"style":21},"builder.Services.AddHttpClient\u003CMonidClient>(c => {\n    c.BaseAddress = new Uri(\"https:\u002F\u002Fapi.monid.ai\u002F\");\n    c.DefaultRequestHeaders.Authorization = new(\"Bearer\", config[\"Monid:ApiKey\"]);\n});\n",[23,614,615,620,625,630],{"__ignoreMap":21},[26,616,617],{"class":28,"line":29},[26,618,619],{},"builder.Services.AddHttpClient\u003CMonidClient>(c => {\n",[26,621,622],{"class":28,"line":368},[26,623,624],{},"    c.BaseAddress = new Uri(\"https:\u002F\u002Fapi.monid.ai\u002F\");\n",[26,626,627],{"class":28,"line":509},[26,628,629],{},"    c.DefaultRequestHeaders.Authorization = new(\"Bearer\", config[\"Monid:ApiKey\"]);\n",[26,631,632],{"class":28,"line":515},[26,633,634],{},"});\n",[11,636,637,639],{},[142,638,462],{}," Clean Markdown plus metadata: title, canonical URL, language, a parsed heading tree, Open Graph and the page's JSON-LD when it publishes any.",[11,641,642,644,645,134],{},[142,643,468],{}," A fraction of a cent per successful call, with blocked fetches unbilled. Current figures at ",[78,646,648],{"href":647},"\u002Ftools","monid.ai\u002Ftools",[95,650,652],{"id":651},"step-3-assert-on-content-not-on-status","Step 3. Assert on content, not on status",[11,654,655,657],{},[142,656,409],{}," Catches the failure that has no exception attached.",[11,659,660],{},[142,661,483],{},[16,663,665],{"className":491,"code":664,"language":493,"meta":21,"style":21},"if (result is null || result.ContentLength \u003C 200)\n{\n    logger.LogWarning(\"Thin response for {Url}: {Length} chars\", url, result?.ContentLength ?? 0);\n    return null;   \u002F\u002F do not index this\n}\n",[23,666,667,672,676,681,686],{"__ignoreMap":21},[26,668,669],{"class":28,"line":29},[26,670,671],{},"if (result is null || result.ContentLength \u003C 200)\n",[26,673,674],{"class":28,"line":368},[26,675,518],{},[26,677,678],{"class":28,"line":509},[26,679,680],{},"    logger.LogWarning(\"Thin response for {Url}: {Length} chars\", url, result?.ContentLength ?? 0);\n",[26,682,683],{"class":28,"line":515},[26,684,685],{},"    return null;   \u002F\u002F do not index this\n",[26,687,688],{"class":28,"line":521},[26,689,606],{},[11,691,692,693,134],{},"The same three-step shape written out end to end, in a different language, is in ",[78,694,696],{"href":695},"\u002Fblog\u002Fany-url-to-llm-ready-markdown","Any URL to LLM-Ready Markdown",[11,698,699,701,702,705],{},[142,700,462],{}," A count worth alerting on. ",[23,703,704],{},"EnsureSuccessStatusCode"," passes happily on a well-formed response containing a challenge page, which is why the length check rather than the status is what protects the pipeline.",[136,707,708],{},[11,709,140,710,145,712],{},[142,711,144],{},[78,713,715],{"href":714},"\u002Fblog\u002Fguides\u002Fscraper-blocked-what-gets-through","Your Scraper Is Blocked: What Actually Gets Through in 2026",[717,718],"skill-prompt",{"prompt":719},"fetch these 50 URLs as markdown, run 8 at a time, skip anything under 200 characters and tell me which ones came back thin",[87,721,723],{"id":722},"do-you-need-playwright-for-net","Do you need Playwright for .NET?",[11,725,726],{},"Sometimes, and less often than the roundups imply, because they answer the question by adding a package rather than by testing.",[95,728,730],{"id":729},"the-test-that-takes-two-minutes","The test that takes two minutes",[11,732,733],{},"Fetch the page without a browser and look for the content you want. If it is in the markup, you never needed a browser and adding one costs you a Chromium process, a container that has to ship browser binaries, and a memory profile that makes your service harder to host.",[11,735,736],{},"A large share of pages that look dynamic serve their content server-rendered and hydrate afterwards. The visible interactivity is not evidence that the data arrives late.",[95,738,740],{"id":739},"when-it-is-genuinely-required","When it is genuinely required",[11,742,743,744,134],{},"Content assembled by client-side calls after load, a flow where step three depends on step two, or anything behind a login. Those are real and no fetch replaces them, and the wider version of that decision is in ",[78,745,747],{"href":746},"\u002Fblog\u002Fguides\u002Fbrowser-automation-without-an-api","Browser Automation When the Site Has No API",[95,749,751],{"id":750},"the-middle-option-people-skip","The middle option people skip",[11,753,754],{},"A fetch endpoint that renders JavaScript on the provider's side. You get the post-render markup back as text, with no browser in your deployment. That covers the \"content arrives late\" case without covering the \"I need to click things\" case, and it is most of what people install Playwright for.",[95,756,758],{"id":757},"the-net-specific-cost","The .NET-specific cost",[11,760,761],{},"Shipping Playwright means shipping browser binaries into your container image, which changes your base image, your image size and your cold start if you are on anything serverless. That is a deployment decision rather than a code decision, and it is worth making deliberately rather than as a side effect of a NuGet install.",[87,763,765],{"id":764},"which-endpoint-should-i-use-for-which-job","Which endpoint should I use for which job?",[213,767,768,790],{},[216,769,770],{},[219,771,772,775,778,781,784,787],{},[222,773,774],{},"Endpoint",[222,776,777],{},"What it does",[222,779,780],{},"Input",[222,782,783],{},"Output",[222,785,786],{},"Best for",[222,788,789],{},"Billing",[232,791,792,821,845,869,893],{},[219,793,794,802,805,808,815,818],{},[237,795,796],{},[78,797,799],{"href":798},"\u002Ftools\u002Fweb-extraction",[23,800,801],{},"context.dev\u002Fweb\u002Fscrape\u002Fmarkdown",[237,803,804],{},"One page to Markdown",[237,806,807],{},"A URL",[237,809,810,811,814],{},"Markdown, ",[23,812,813],{},"contentLength",", metadata, JSON-LD",[237,816,817],{},"You have the URL",[237,819,820],{},"Per call, misses free",[219,822,823,830,833,836,839,842],{},[237,824,825],{},[78,826,827],{"href":798},[23,828,829],{},"context.dev\u002Fweb\u002Fextract",[237,831,832],{},"Page to typed JSON",[237,834,835],{},"URL plus a JSON Schema",[237,837,838],{},"Typed fields",[237,840,841],{},"You want a record, not prose",[237,843,844],{},"Per result",[219,846,847,854,857,860,863,866],{},[237,848,849],{},[78,850,851],{"href":798},[23,852,853],{},"context.dev\u002Fweb\u002Fcrawl",[237,855,856],{},"A whole site",[237,858,859],{},"Start URL, depth, cap",[237,861,862],{},"Markdown per page",[237,864,865],{},"Ingesting a section",[237,867,868],{},"Per page",[219,870,871,879,882,885,888,891],{},[237,872,873],{},[78,874,876],{"href":875},"\u002Ftools\u002Fweb-search",[23,877,878],{},"context.dev\u002Fweb\u002Fsearch",[237,880,881],{},"Find pages by query",[237,883,884],{},"A query",[237,886,887],{},"Ranked URLs with relevance",[237,889,890],{},"You do not have URLs",[237,892,844],{},[219,894,895,903,906,909,912,915],{},[237,896,897],{},[78,898,900],{"href":899},"\u002Ftools\u002Fagents",[23,901,902],{},"x402.browserbase.com\u002Fbrowser\u002Fsession\u002Fcreate",[237,904,905],{},"A remote browser",[237,907,908],{},"None",[237,910,911],{},"Session and connect URL",[237,913,914],{},"You need to click",[237,916,917],{},"Per call, then time",[11,919,920,921,924,925,134],{},"Every row was verified with ",[23,922,923],{},"monid inspect"," on 2026-08-31. The table gives billing shape rather than figures; shape drives design and current numbers live on ",[78,926,648],{"href":647},[11,928,929,930,933],{},"The row worth knowing in a typed language is ",[23,931,932],{},"extract",". Supplying a JSON Schema and getting typed fields back means your C# record and the response shape are agreed in one place rather than two, which removes the class of bug where a parser silently returns null and a nullable property quietly accepts it.",[87,935,937],{"id":936},"when-should-you-write-the-whole-thing-in-c","When should you write the whole thing in C#?",[11,939,940],{},"Three cases, and they are legitimate.",[11,942,943,946],{},[142,944,945],{},"The targets are friendly and the volume is large."," Scraping your own properties, a partner's site, or public documentation that wants to be read. No access problem exists, so there is nothing to buy, and .NET's concurrency story makes this genuinely pleasant at scale.",[11,948,949,952],{},[142,950,951],{},"The parsing is the product."," Custom extraction rules per site, domain-specific normalisation, anything where the transformation is what you are selling. Keep it in your codebase where you can test it.",[11,954,955,958,959,134],{},[142,956,957],{},"You are crawling a whole site rather than fetching pages."," That is a different shape with a different cost curve, taken apart in ",[78,960,962],{"href":961},"\u002Fblog\u002Fguides\u002Fcrawl4ai-when-to-run-your-own-crawler","Crawl4AI: When Should You Run Your Own Crawler?",[11,964,965,968],{},[142,966,967],{},"It has to run inside your process."," Air-gapped environments, regulated data, or a deployment where an outbound call to a third party is a compliance conversation rather than a config change.",[11,970,971],{},"There is also an honest limit on the argument above. If you are already running browser infrastructure for other reasons, adding scraping to it is close to free, and the case for buying a fetch is much weaker. The pitch here is aimed at teams who would be standing that up specifically for this.",[11,973,974],{},"And the disclosure: this is Monid's blog and we sell per-call access to fetch endpoints, so we have a commercial interest in the conclusion. On the three cases above we are the wrong answer and the libraries in the first section are the right one.",[87,976,978],{"id":977},"conclusion","Conclusion",[11,980,981],{},"C# web scraping is two jobs and only one of them is a C# question. The parsing stack is mature, HtmlAgilityPack and AngleSharp both do their job, and .NET's async model is a real advantage once the data is arriving. None of that touches the reason scrapers stop working, which is that a request left your server from an address the target decided to refuse.",[11,983,984,985,987],{},"The thing worth carrying past this is the diagnostic order. Before reaching for a proxy, check whether you are creating an ",[23,986,191],{}," per request, because socket exhaustion in .NET produces timeouts that look exactly like rate limiting. Then check whether the content was in the markup at all, because an empty selector is a rendering problem rather than an access one. Only what survives both is actually a blocking problem, and that is the one you buy your way out of.",[11,989,990,991,994,995,134],{},"Free next step: run ",[23,992,993],{},"monid inspect -p context.dev -e \u002Fweb\u002Fscrape\u002Fmarkdown"," and read the output schema before you write the record type. It is free, and matching the model to the response on the first attempt is worth more than the two minutes it takes. Start at ",[78,996,998],{"href":80,"rel":997},[82,83],"monid.ai",[87,1000,1002],{"id":1001},"faq","FAQ",[1004,1005,1007],"faq-item",{"q":1006},"HtmlAgilityPack or AngleSharp for C# scraping?",[11,1008,1009],{},"HtmlAgilityPack if you are selecting a handful of fields with XPath and the markup is messy, because it is forgiving and the API is small. AngleSharp if the document is complicated, you want CSS selectors, or you need the DOM to behave the way a browser's does, because it is a genuine HTML5 parser rather than a tolerant tree builder. Both are actively maintained and the choice rarely decides a project; what decides projects is whether you got the page at all.",[1004,1011,1013],{"q":1012},"Why does my C# scraper start timing out under load?",[11,1014,1015,1016,1018,1019,1021],{},"Almost always because a new ",[23,1017,191],{}," is being created per request, which exhausts sockets: instances linger in TIME_WAIT and the connection pool runs out, producing timeouts that look exactly like the target rate limiting you. Use ",[23,1020,487],{}," and inject a typed client, as in the registration above, and the lifetime is handled for you. This is worth ruling out before you buy a single proxy, because the symptoms are identical and the fix is free.",[1004,1023,1025],{"q":1024},"Should scraping run in a background service or a serverless function?",[11,1026,1027,1028,1031],{},"A hosted ",[23,1029,1030],{},"BackgroundService"," suits a schedule you control and a long-lived connection pool, which is the shape most collection work has. Functions suit bursty, event-driven work and punish anything that needs warm connections or ships browser binaries. If Playwright is in the picture, the image size alone usually settles it in favour of a container. Calling a fetch endpoint instead keeps the function option open, which is a side benefit worth knowing about.",[1004,1033,1035],{"q":1034},"How do you parallelise scraping in C# without getting blocked?",[11,1036,1037,1039,1040,1043],{},[23,1038,206],{}," with ",[23,1041,1042],{},"MaxDegreeOfParallelism"," set explicitly, and set it low: eight concurrent requests to one host is already assertive. The mistake is treating concurrency as a throughput dial when it is a politeness dial, since the limit that matters is the target's tolerance rather than your CPU. If you are calling an endpoint rather than the target directly, the provider absorbs the pacing and you can raise concurrency to whatever your own pipeline handles comfortably.",[1045,1046,1049],"tool-cta",{"category":1047,"title":1048},"web-extraction","Keep the parser, drop the fetch",[11,1050,1051],{},"Discover the endpoint, read the output schema before writing your record type, and check the current price. Blocked fetches are not billed.",[11,1053,1054],{},[1055,1056,1057],"em",{},"Last updated August 2026.",[1059,1060,1061],"style",{},"html pre.shiki code .s2Zo4, html code.shiki .s2Zo4{--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF}html pre.shiki code .sfazB, html code.shiki .sfazB{--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D}html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html pre.shiki code .sBMFI, html code.shiki .sBMFI{--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B}html pre.shiki code .sMK4o, html code.shiki .sMK4o{--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF}html pre.shiki code .sTEyZ, html code.shiki .sTEyZ{--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8}",{"title":21,"searchDepth":368,"depth":368,"links":1063},[1064,1071,1079,1086,1092,1093,1094,1095],{"id":89,"depth":368,"text":90,"children":1065},[1066,1067,1068,1069,1070],{"id":97,"depth":509,"text":98},{"id":104,"depth":509,"text":105},{"id":111,"depth":509,"text":112},{"id":118,"depth":509,"text":119},{"id":125,"depth":509,"text":126},{"id":152,"depth":368,"text":153,"children":1072},[1073,1074,1075,1076,1077,1078],{"id":159,"depth":509,"text":160},{"id":170,"depth":509,"text":171},{"id":177,"depth":509,"text":178},{"id":184,"depth":509,"text":185},{"id":199,"depth":509,"text":200},{"id":210,"depth":509,"text":211},{"id":306,"depth":368,"text":307,"children":1080},[1081,1082,1083,1084,1085],{"id":313,"depth":509,"text":314},{"id":342,"depth":509,"text":343},{"id":403,"depth":509,"text":404},{"id":472,"depth":509,"text":473},{"id":651,"depth":509,"text":652},{"id":722,"depth":368,"text":723,"children":1087},[1088,1089,1090,1091],{"id":729,"depth":509,"text":730},{"id":739,"depth":509,"text":740},{"id":750,"depth":509,"text":751},{"id":757,"depth":509,"text":758},{"id":764,"depth":368,"text":765},{"id":936,"depth":368,"text":937},{"id":977,"depth":368,"text":978},{"id":1001,"depth":368,"text":1002},"Search & RAG","\u002Fimg\u002Fblog\u002Fc-sharp-web-scraping-without-the-stack.png","The .NET parsing stack was never the problem. What breaks a C# scraper is the request leaving your server, and that half is not a language question.",false,"md",null,"\u002Fimg\u002Fblog\u002Fc-sharp-web-scraping-without-the-stack-card.png",{},"\u002Fblog\u002Fguides\u002Fc-sharp-web-scraping-without-the-stack","2026-08-31","10 min",{"title":5,"description":1098},"blog\u002Fguides\u002Fc-sharp-web-scraping-without-the-stack",[1110,1111,1112,1113,1114],"c# web scraping","htmlagilitypack","dotnet","web extraction","playwright","qEwu1pKNuXhBeUFNbCqsJhUMUb_cQCUDgSKN9Rc2wak",[1117,1132,1145,1158,1171,1183,1195,1208,1220,1232,1245,1257,1269,1281,1294,1305,1317,1330,1341,1355,1367,1378,1391,1404,1415,1427,1437,1450,1462,1472,1484,1496,1508,1519,1531,1543,1555,1568,1581,1594,1605,1617,1629,1641,1653,1655,1667,1678,1689,1700,1710,1722,1730,1742,1753,1764,1775,1788,1798,1809,1817,1827,1838,1850,1862,1874,1884,1896,1905,1917,1927,1936,1946,1954,1962,1973,1980,1990,2001,2011,2022,2034,2041,2051,2059,2067,2076,2086,2097,2105,2113,2122,2133,2143,2152,2161,2171,2182,2191,2200,2210,2218,2226,2239,2249,2259,2269,2279,2289,2297,2306,2315,2322,2332,2344,2353,2363,2372,2381,2392,2401,2410,2418,2427,2436],{"path":1118,"title":1119,"description":1120,"publishedAt":1121,"author":6,"category":1122,"tags":1123,"readTime":1129,"cover":1130,"listingCover":1131,"image":1101},"\u002Fblog\u002Fguides\u002Fahrefs-vs-kwfinder-link-half","Ahrefs vs KWFinder: The Half of Ahrefs You Can Buy by the Call","These two get compared on keyword research, where no API replaces either. The link index only one of them has is available per call.","2026-09-18","Product",[1124,1125,1126,1127,1128],"ahrefs vs kwfinder","kwfinder vs ahrefs","ahrefs alternative","backlink api","domain rating","11 min","\u002Fimg\u002Fblog\u002Fahrefs-vs-kwfinder-link-half.png","\u002Fimg\u002Fblog\u002Fahrefs-vs-kwfinder-link-half-card.png",{"path":1133,"title":1134,"description":1135,"publishedAt":1121,"author":6,"category":1136,"tags":1137,"readTime":1129,"cover":1143,"listingCover":1144,"image":1101},"\u002Fblog\u002Fguides\u002Ffacebook-profile-viewer-api","Facebook Profile Viewer: What an API Returns, and What It Will Not","The scraper whose docs say it refuses personal profiles returned one anyway. Its two follower counts for that person differed by one.","Social data",[1138,1139,1140,1141,1142],"facebook profile viewer","facebook profile api","facebook page scraper","public facebook data","facebook api","\u002Fimg\u002Fblog\u002Ffacebook-profile-viewer-api.png","\u002Fimg\u002Fblog\u002Ffacebook-profile-viewer-api-card.png",{"path":1146,"title":1147,"description":1148,"publishedAt":1121,"author":6,"category":1149,"tags":1150,"readTime":1129,"cover":1156,"listingCover":1157,"image":1101},"\u002Fblog\u002Fguides\u002Fh1b-data-api-sponsorship-records","H-1B Data by API: 549,133 Records, and the Domain Field Is Invented","One call returned half a million sponsorship records. The top wage was a React developer on 1.9 million. The company domain on every row does not resolve.","Sales & enrichment",[1151,1152,1153,1154,1155],"h1b data","h1b api","h1b salary data","visa sponsorship data","labor condition application","\u002Fimg\u002Fblog\u002Fh1b-data-api-sponsorship-records.png","\u002Fimg\u002Fblog\u002Fh1b-data-api-sponsorship-records-card.png",{"path":1159,"title":1160,"description":1161,"publishedAt":1162,"author":6,"category":1096,"tags":1163,"readTime":1129,"cover":1169,"listingCover":1170,"image":1101},"\u002Fblog\u002Fguides\u002Farxiv-api-paper-search","arXiv API for Paper Search: Three of Twenty Results Were Off Topic","Restricting a paper search to arXiv returned three papers about cognitive augmentation instead of retrieval augmentation. The blended source returned none.","2026-09-17",[1164,1165,1166,1167,1168],"arxiv api","paper search api","academic search api","literature review api","semantic scholar","\u002Fimg\u002Fblog\u002Farxiv-api-paper-search.png","\u002Fimg\u002Fblog\u002Farxiv-api-paper-search-card.png",{"path":1172,"title":1173,"description":1174,"publishedAt":1162,"author":6,"category":1149,"tags":1175,"readTime":1129,"cover":1181,"listingCover":1182,"image":1101},"\u002Fblog\u002Fguides\u002Fbuzzfile-search-by-name-company-lookup","Buzzfile Search by Name or a Company API: One Name, Ten Companies","One free call on the name Patagonia returned ten companies, all called Patagonia. A rival fuzzy search returned two, and neither was the right one.",[1176,1177,1178,1179,1180],"buzzfile search by name","company search by name","company lookup api","name to domain","company enrichment","\u002Fimg\u002Fblog\u002Fbuzzfile-search-by-name-company-lookup.png","\u002Fimg\u002Fblog\u002Fbuzzfile-search-by-name-company-lookup-card.png",{"path":1184,"title":1185,"description":1186,"publishedAt":1162,"author":6,"category":1149,"tags":1187,"readTime":1129,"cover":1193,"listingCover":1194,"image":1101},"\u002Fblog\u002Fguides\u002Frocketreach-pricing-per-contact-lookups","RocketReach Pricing or Per-Contact Lookups: Where the Charge Lands","We paid the base charge for one executive and got an id, a country and a null title. A second provider returned the right job title and zero contacts.",[1188,1189,1190,1191,1192],"rocketreach pricing","rocketreach","contact lookup api","people enrichment pricing","credits","\u002Fimg\u002Fblog\u002Frocketreach-pricing-per-contact-lookups.png","\u002Fimg\u002Fblog\u002Frocketreach-pricing-per-contact-lookups-card.png",{"path":1196,"title":1197,"description":1198,"publishedAt":1199,"author":6,"category":1149,"tags":1200,"readTime":1129,"cover":1206,"listingCover":1207,"image":1101},"\u002Fblog\u002Fguides\u002Fb2b-prospecting-tool-api","B2B Prospecting Tool by API: The List Is Free, the Name Is the Bill","One free call returned 100 sales leaders at 47 companies with names redacted. Revealing who they are is the paid step. How three prospecting routes bill.","2026-09-16",[1201,1202,1203,1204,1205],"b2b prospecting tool","b2b leads","b2b sms outreach","prospecting api","lead generation","\u002Fimg\u002Fblog\u002Fb2b-prospecting-tool-api.png","\u002Fimg\u002Fblog\u002Fb2b-prospecting-tool-api-card.png",{"path":1209,"title":1210,"description":1211,"publishedAt":1199,"author":6,"category":1149,"tags":1212,"readTime":1129,"cover":1218,"listingCover":1219,"image":1101},"\u002Fblog\u002Fguides\u002Fcrunchbase-pro-vs-api-by-the-call","Crunchbase Pro or Crunchbase by the Call: What Each Actually Returns","Sixty-nine organisations match Stripe. The profile carried seven fields and no funding total. Twenty-five rounds came back with types and no amounts.",[1213,1214,1215,1216,1217],"crunchbase pro","crunchbase api","crunchbase pricing","funding rounds api","company data","\u002Fimg\u002Fblog\u002Fcrunchbase-pro-vs-api-by-the-call.png","\u002Fimg\u002Fblog\u002Fcrunchbase-pro-vs-api-by-the-call-card.png",{"path":1221,"title":1222,"description":1223,"publishedAt":1199,"author":6,"category":1096,"tags":1224,"readTime":1129,"cover":1230,"listingCover":1231,"image":1101},"\u002Fblog\u002Fguides\u002Ftavily-api-key-or-one-key","Tavily API Key or One Key: Four Web Search APIs, One Query, Zero URLs in Common","Four search engines, one query, same minute. Two shared no URLs at all. One returned Google page one verbatim. One found our own page.",[1225,1226,1227,1228,1229],"tavily api key","tavily api","web search api for agents","search api comparison","exa","\u002Fimg\u002Fblog\u002Ftavily-api-key-or-one-key.png","\u002Fimg\u002Fblog\u002Ftavily-api-key-or-one-key-card.png",{"path":1233,"title":1234,"description":1235,"publishedAt":1236,"author":6,"category":1096,"tags":1237,"readTime":1129,"cover":1243,"listingCover":1244,"image":1101},"\u002Fblog\u002Fguides\u002Fahrefs-api-domain-rating-backlinks","Ahrefs API by the Call: Domain Rating, Backlinks, Paid Pages","We pulled our own backlink profile through the Ahrefs API: ten referring domains, all DR 91 or higher, six dofollow links out of thirty-three.","2026-09-15",[1238,1239,1240,1241,1242],"ahrefs api","ahrefs api documentation","domain rating api","backlinks api","seo data api","\u002Fimg\u002Fblog\u002Fahrefs-api-domain-rating-backlinks.png","\u002Fimg\u002Fblog\u002Fahrefs-api-domain-rating-backlinks-card.png",{"path":1246,"title":1247,"description":1248,"publishedAt":1236,"author":6,"category":1149,"tags":1249,"readTime":1129,"cover":1255,"listingCover":1256,"image":1101},"\u002Fblog\u002Fguides\u002Fapollo-email-finder-api","Apollo Email Finder API: Two Providers, One Mailbox, Two Owners","Apollo says patrick@stripe.com is the CEO, verified. Hunter.io says it is an IT administrator, observed. Same address, one day apart, both confident.",[1250,1251,1252,1253,1254],"apollo email finder","apollo api","apollo.io api","people match","email enrichment","\u002Fimg\u002Fblog\u002Fapollo-email-finder-api.png","\u002Fimg\u002Fblog\u002Fapollo-email-finder-api-card.png",{"path":1258,"title":1259,"description":1260,"publishedAt":1236,"author":6,"category":1122,"tags":1261,"readTime":1106,"cover":1267,"listingCover":1268,"image":1101},"\u002Fblog\u002Fguides\u002Fdomain-name-availability-api","Domain Name Availability API: Registered Is Not the Same as Live","We checked our own name: the .com was available, .io and .dev were registered with no site, and two WHOIS providers agreed on every date.",[1262,1263,1264,1265,1266],"domain name search availability","domain availability api","whois api","domain lookup","startup domain check","\u002Fimg\u002Fblog\u002Fdomain-name-availability-api.png","\u002Fimg\u002Fblog\u002Fdomain-name-availability-api-card.png",{"path":1270,"title":1271,"description":1272,"publishedAt":1236,"author":6,"category":1096,"tags":1273,"readTime":1129,"cover":1279,"listingCover":1280,"image":1101},"\u002Fblog\u002Fguides\u002Ffirecrawl-with-claude-mcp-or-one-key","Firecrawl With Claude: MCP Server or One Key for Everything?","Firecrawl mapped 484 URLs for a tenth of a cent, scraped a page to 20,000 characters of markdown, and refused an agent task when maxCredits was too low.",[1274,1275,1276,1277,1278],"firecrawl claude","firecrawl mcp","firecrawl api","web scraping for agents","mcp server","\u002Fimg\u002Fblog\u002Ffirecrawl-with-claude-mcp-or-one-key.png","\u002Fimg\u002Fblog\u002Ffirecrawl-with-claude-mcp-or-one-key-card.png",{"path":1282,"title":1283,"description":1284,"publishedAt":1236,"author":6,"category":1285,"tags":1286,"readTime":1129,"cover":1292,"listingCover":1293,"image":1101},"\u002Fblog\u002Fguides\u002Fhow-to-use-seedance-2-0-api","How to Use Seedance 2.0 by API: One Prompt, Two Models, Measured","Seedance 2.0 and 2.0 Mini rendered one 5-second prompt in the same two minutes for the same 108,900 tokens. One billed exactly twice the other.","Generative media",[1287,1288,1289,1290,1291],"how to use seedance 2.0","seedance 2.0","seedance api","text to video api","ai video generation","\u002Fimg\u002Fblog\u002Fhow-to-use-seedance-2-0-api.png","\u002Fimg\u002Fblog\u002Fhow-to-use-seedance-2-0-api-card.png",{"path":1295,"title":1296,"description":1297,"publishedAt":1236,"author":6,"category":1096,"tags":1298,"readTime":1129,"cover":1303,"listingCover":1304,"image":1101},"\u002Fblog\u002Fguides\u002Focten-ai-search-api","Octen AI Search API: 78 ms Inside, One Second End to End","Octen reports its own latency in every response. On our calls it said 78 ms; the round trip was a second. What search, extract and embedding return.",[1299,1300,1301,1302,1227],"octen ai","octen","octen search","octen api","\u002Fimg\u002Fblog\u002Focten-ai-search-api.png","\u002Fimg\u002Fblog\u002Focten-ai-search-api-card.png",{"path":1306,"title":1307,"description":1308,"publishedAt":1236,"author":6,"category":1136,"tags":1309,"readTime":1129,"cover":1315,"listingCover":1316,"image":1101},"\u002Fblog\u002Fguides\u002Freddit-user-information-extraction-api","Reddit User Information Extraction: Profile, Posts and Comments by API","One Reddit account, three endpoints: a profile with karma split two ways, a complete post history in one call, and comments that carry their thread.",[1310,1311,1312,1313,1314],"reddit user information extraction","reddit user api","reddit profile scraper","reddit comments api","social data","\u002Fimg\u002Fblog\u002Freddit-user-information-extraction-api.png","\u002Fimg\u002Fblog\u002Freddit-user-information-extraction-api-card.png",{"path":1318,"title":1319,"description":1320,"publishedAt":1321,"author":6,"category":1149,"tags":1322,"readTime":1129,"cover":1328,"listingCover":1329,"image":1101},"\u002Fblog\u002Fguides\u002Fhunter-io-api-domain-search-vs-email-finder","Hunter.io API: Domain Search Finds, Email Finder Guesses","Hunter.io domain search returned ten verified addresses at confidence 85. Email finder returned one address at confidence 16 with no source. Same provider.","2026-09-14",[1323,1324,1325,1326,1327],"hunter.io","hunter io api","email finder","domain search","email verification","\u002Fimg\u002Fblog\u002Fhunter-io-api-domain-search-vs-email-finder.png","\u002Fimg\u002Fblog\u002Fhunter-io-api-domain-search-vs-email-finder-card.png",{"path":1331,"title":1332,"description":1333,"publishedAt":1321,"author":6,"category":1149,"tags":1334,"readTime":1106,"cover":1339,"listingCover":1340,"image":1101},"\u002Fblog\u002Fguides\u002Freverse-email-lookup-api","Reverse Email Lookup API: What One Address Actually Returned","A reverse email lookup on a Stripe address returned an IT administrator, not the CEO. That is the endpoint working, and the fuzzy flag says why.",[1335,1336,1337,1338,1323],"reverse email lookup","reverse email lookup free","email to person","people enrichment","\u002Fimg\u002Fblog\u002Freverse-email-lookup-api.png","\u002Fimg\u002Fblog\u002Freverse-email-lookup-api-card.png",{"path":1342,"title":1343,"description":1344,"publishedAt":1321,"author":6,"category":1136,"tags":1345,"readTime":1352,"cover":1353,"listingCover":1354,"image":1101},"\u002Fblog\u002Fguides\u002Ftiktok-user-finder-api","TikTok Profile Viewer and Account Finder: What an API Returns","One profile call returned two different follower counts in one response. One keyword returned twenty accounts, ten of them regional handles of one brand.",[1346,1347,1348,1349,1350,1351],"tiktok profile viewer","tiktok account viewer","tiktok account finder","tiktok user search","tiktok api","tikhub","12 min","\u002Fimg\u002Fblog\u002Ftiktok-user-finder-api.png","\u002Fimg\u002Fblog\u002Ftiktok-user-finder-api-card.png",{"path":1356,"title":1357,"description":1358,"publishedAt":1359,"author":6,"category":1096,"tags":1360,"readTime":1129,"cover":1365,"listingCover":1366,"image":1101},"\u002Fblog\u002Fguides\u002Ffree-web-search-api-for-agents","TinyFish Made a Free Web Search API. One Query Is a Third.","We asked TinyFish Search one question five ways. It returned 27 pages, and the best single phrasing found 9 of them. Every call was free.","2026-09-13",[1361,1362,1363,1364],"web search","ai agents","rag","retrieval","\u002Fimg\u002Fblog\u002Ffree-web-search-api-for-agents.png","\u002Fimg\u002Fblog\u002Ffree-web-search-api-for-agents-card.png",{"path":1368,"title":1369,"description":1370,"publishedAt":1371,"author":6,"category":1122,"tags":1372,"readTime":1129,"cover":1376,"listingCover":1377,"image":1101},"\u002Fblog\u002Fguides\u002Fai-agent-development-company-or-in-house","AI Agent Development Company or In House? The Hard Part","Two vendors, one domain, two different companies. One reported 2,930 employees and the other 63. Neither returned an error. That is the build.","2026-09-08",[1362,1373,1374,1375],"build vs buy","data quality","integration","\u002Fimg\u002Fblog\u002Fai-agent-development-company-or-in-house.png","\u002Fimg\u002Fblog\u002Fai-agent-development-company-or-in-house-card.png",{"path":1379,"title":1380,"description":1381,"publishedAt":1371,"author":6,"category":1382,"tags":1383,"readTime":1129,"cover":1389,"listingCover":1390,"image":1101},"\u002Fblog\u002Fguides\u002Ffind-companies-running-google-ads","How Do You Find Prospects Running Google Ads?","One landing page carried 1,537 distinct ad creatives. That count, not traffic, separates a company testing paid search from one committed to it.","Ads intelligence",[1384,1385,1386,1387,1388],"google ads","ads intelligence","prospecting","paid search","agency lead generation","\u002Fimg\u002Fblog\u002Ffind-companies-running-google-ads.png","\u002Fimg\u002Fblog\u002Ffind-companies-running-google-ads-card.png",{"path":1392,"title":1393,"description":1394,"publishedAt":1371,"author":6,"category":1395,"tags":1396,"readTime":1129,"cover":1402,"listingCover":1403,"image":1101},"\u002Fblog\u002Fguides\u002Fgoogle-shopping-api-lowest-price","Google Shopping API: The Lowest Price Is a Different Product","One search returned the same headphones from 22.99 to 399.99. The cheapest was a weekly rental. Sorting by price picks the row that is not the product.","Ecommerce",[1397,1398,1399,1400,1401],"google shopping api","price comparison","ecommerce data","product matching","repricing","\u002Fimg\u002Fblog\u002Fgoogle-shopping-api-lowest-price.png","\u002Fimg\u002Fblog\u002Fgoogle-shopping-api-lowest-price-card.png",{"path":1405,"title":1406,"description":1407,"publishedAt":1371,"author":6,"category":1136,"tags":1408,"readTime":1129,"cover":1413,"listingCover":1414,"image":1101},"\u002Fblog\u002Fguides\u002Freddit-scraper-returns-different-posts","Two Reddit Scrapers, One Query, Four Posts in Common","The complaint is that a Reddit scraper returns irrelevant posts. We measured it. Results were relevant, and two providers disagreed on six of ten.",[1409,1410,1411,1412,1351],"reddit scraper","reddit api","social listening","apify","\u002Fimg\u002Fblog\u002Freddit-scraper-returns-different-posts.png","\u002Fimg\u002Fblog\u002Freddit-scraper-returns-different-posts-card.png",{"path":1416,"title":1417,"description":1418,"publishedAt":1371,"author":6,"category":1149,"tags":1419,"readTime":1129,"cover":1425,"listingCover":1426,"image":1101},"\u002Fblog\u002Fguides\u002Fsalary-data-api-three-sources","Salary Data API: Three Sources, Three Different Numbers","Indeed says the median software engineer earns 136k. Levels.fyi says 298k. Both are right, and the field that explains it is the sample count.",[1420,1421,1422,1423,1424],"salary data api","compensation data","levels.fyi","h1b salaries","market data","\u002Fimg\u002Fblog\u002Fsalary-data-api-three-sources.png","\u002Fimg\u002Fblog\u002Fsalary-data-api-three-sources-card.png",{"path":1428,"title":1429,"description":1430,"publishedAt":1371,"author":6,"category":1136,"tags":1431,"readTime":1106,"cover":1435,"listingCover":1436,"image":1101},"\u002Fblog\u002Fguides\u002Ftelegram-channel-data-without-a-bot-token","Telegram Channel Data Without a Bot Token","Telegram publishes view counts no other platform gives you. They arrive as 926K and 24.2M, already rounded, and they are lifetime totals not velocity.",[1432,1433,1411,1434,1351],"telegram api","telegram scraping","channel data","\u002Fimg\u002Fblog\u002Ftelegram-channel-data-without-a-bot-token.png","\u002Fimg\u002Fblog\u002Ftelegram-channel-data-without-a-bot-token-card.png",{"path":1438,"title":1439,"description":1440,"publishedAt":1441,"author":6,"category":1122,"tags":1442,"readTime":1129,"cover":1448,"listingCover":1449,"image":1101},"\u002Fblog\u002Fguides\u002Finsider-trading-api-form-4-data","Insider Trading API: What Form 4 Data Actually Tells You","A director sold 1,848,501 shares for $410,843,671. The filing arrived two days later, and that lag is the most important field in the response.","2026-09-07",[1443,1444,1445,1446,1447],"insider trading api","sec form 4","insider transactions","financial data","market signals","\u002Fimg\u002Fblog\u002Finsider-trading-api-form-4-data.png","\u002Fimg\u002Fblog\u002Finsider-trading-api-form-4-data-card.png",{"path":1451,"title":1452,"description":1453,"publishedAt":1441,"author":6,"category":1149,"tags":1454,"readTime":1352,"cover":1460,"listingCover":1461,"image":1101},"\u002Fblog\u002Fguides\u002Fis-there-an-api-for-pitchbook-data","PitchBook Pricing and Cost: Is There an API Instead?","PitchBook publishes no price and no public API. Free alternatives return which rounds a company raised and what type, not how much, when or the valuation.",[1455,1456,1457,1216,1458,1459],"pitchbook pricing","pitchbook cost","pitchbook api","private company data","venture data","\u002Fimg\u002Fblog\u002Fis-there-an-api-for-pitchbook-data.png","\u002Fimg\u002Fblog\u002Fis-there-an-api-for-pitchbook-data-card.png",{"path":1463,"title":1464,"description":1465,"publishedAt":1441,"author":6,"category":1395,"tags":1466,"readTime":1129,"cover":1470,"listingCover":1471,"image":1101},"\u002Fblog\u002Fguides\u002Fmonitor-competitor-prices-automatically","How to Monitor Competitor Prices Automatically","Two sources agreed the price was 54.99. One also said the list price was 79.99. Store only the first and you cannot tell a price cut from a discount.",[1467,1468,1401,1399,1469],"competitor price monitoring","price tracking","list price","\u002Fimg\u002Fblog\u002Fmonitor-competitor-prices-automatically.png","\u002Fimg\u002Fblog\u002Fmonitor-competitor-prices-automatically-card.png",{"path":1473,"title":1474,"description":1475,"publishedAt":1441,"author":6,"category":1122,"tags":1476,"readTime":1352,"cover":1482,"listingCover":1483,"image":1101},"\u002Fblog\u002Fguides\u002Fprediction-market-data-api-kalshi-polymarket","Kalshi API and Polymarket: Matching Prediction Markets by the Call","Two Kalshi routes returned 15 and 25 fields for one venue, with no tickers in common. The cross-venue match endpoint returned 20 pairs at 100 percent.",[1477,1478,1479,1480,1424,1481],"kalshi api","polymarket api","prediction markets","prediction market data","cross-venue","\u002Fimg\u002Fblog\u002Fprediction-market-data-api-kalshi-polymarket.png","\u002Fimg\u002Fblog\u002Fprediction-market-data-api-kalshi-polymarket-card.png",{"path":1485,"title":1486,"description":1487,"publishedAt":1441,"author":6,"category":1122,"tags":1488,"readTime":1129,"cover":1494,"listingCover":1495,"image":1101},"\u002Fblog\u002Fguides\u002Fsoftware-review-data-api-g2-capterra","Software Review Data: What a G2 or Capterra API Returns","Capterra returned 25 reviews split into pros and cons. A niche product returned zero. G2 was blocked on both days we tried, five days apart.",[1489,1490,1491,1492,1493],"software review data","g2 api","capterra api","review mining","competitive research","\u002Fimg\u002Fblog\u002Fsoftware-review-data-api-g2-capterra.png","\u002Fimg\u002Fblog\u002Fsoftware-review-data-api-g2-capterra-card.png",{"path":1497,"title":1498,"description":1499,"publishedAt":1500,"author":6,"category":1136,"tags":1501,"readTime":1129,"cover":1506,"listingCover":1507,"image":1101},"\u002Fblog\u002Fguides\u002Fare-instagram-engagement-trackers-accurate","Are Instagram Follower and Engagement Trackers Accurate?","Two providers disagreed by 2 followers out of 104 million. The same 12 posts gave 0.096% or 0.334% engagement depending on one undocumented choice.","2026-09-03",[1502,1503,1504,1314,1505],"instagram engagement rate","follower count accuracy","influencer vetting","instagram api","\u002Fimg\u002Fblog\u002Fare-instagram-engagement-trackers-accurate.png","\u002Fimg\u002Fblog\u002Fare-instagram-engagement-trackers-accurate-card.png",{"path":1509,"title":1510,"description":1511,"publishedAt":1500,"author":6,"category":1149,"tags":1512,"readTime":1129,"cover":1517,"listingCover":1518,"image":1101},"\u002Fblog\u002Fguides\u002Fbounce-rates-and-spam-traps-when-validating-email","Bounce Rates and Spam Traps When Validating an Email List","A verifier returned twelve fields for three addresses. None of them was spam_trap, and none could be. Here is what verification fixes and what it cannot.",[1513,1514,1327,1515,1516],"spam traps","email bounce rate","deliverability","list hygiene","\u002Fimg\u002Fblog\u002Fbounce-rates-and-spam-traps-when-validating-email.png","\u002Fimg\u002Fblog\u002Fbounce-rates-and-spam-traps-when-validating-email-card.png",{"path":1520,"title":1521,"description":1522,"publishedAt":1500,"author":6,"category":1122,"tags":1523,"readTime":1352,"cover":1529,"listingCover":1530,"image":1101},"\u002Fblog\u002Fguides\u002Frate-limit-calls-to-a-third-party-api","How to Rate Limit Calls to a Third Party API","Six real failure responses collected over three days. Only one of them meant slow down, and telling them apart matters more than any backoff algorithm.",[1524,1525,1526,1527,1528],"rate limiting","retry backoff","429 too many requests","api reliability","concurrency","\u002Fimg\u002Fblog\u002Frate-limit-calls-to-a-third-party-api.png","\u002Fimg\u002Fblog\u002Frate-limit-calls-to-a-third-party-api-card.png",{"path":1532,"title":1533,"description":1534,"publishedAt":1500,"author":6,"category":1149,"tags":1535,"readTime":1129,"cover":1541,"listingCover":1542,"image":1101},"\u002Fblog\u002Fguides\u002Fscrape-linkedin-without-getting-banned","How to Scrape LinkedIn Without Getting Your Account Banned","The ban risk comes from tools that drive your logged-in session. Three endpoints returned profile data from a URL alone, with no cookie involved.",[1536,1537,1538,1539,1540],"linkedin scraping","account ban","li_at cookie","sales navigator","linkedin api","\u002Fimg\u002Fblog\u002Fscrape-linkedin-without-getting-banned.png","\u002Fimg\u002Fblog\u002Fscrape-linkedin-without-getting-banned-card.png",{"path":1544,"title":1545,"description":1546,"publishedAt":1500,"author":6,"category":1122,"tags":1547,"readTime":1352,"cover":1553,"listingCover":1554,"image":1101},"\u002Fblog\u002Fguides\u002Fstop-depending-on-one-scraping-vendor","How to Stop Depending on One Scraping Vendor","Ten provider failures in three days, all while doing other work. None was a bad vendor. The defence is a second route you can reach without a rewrite.",[1548,1549,1550,1551,1552],"vendor lock-in","scraping reliability","actor removed","failover","data pipeline","\u002Fimg\u002Fblog\u002Fstop-depending-on-one-scraping-vendor.png","\u002Fimg\u002Fblog\u002Fstop-depending-on-one-scraping-vendor-card.png",{"path":1556,"title":1557,"description":1558,"publishedAt":1559,"author":6,"category":1122,"tags":1560,"readTime":1352,"cover":1566,"listingCover":1567,"image":1101},"\u002Fblog\u002Fguides\u002Fextract-pricing-and-free-trial-information","Extract Pricing and Free Trial Information From Websites","One endpoint returned four plans, numeric amounts and a free_trial_available flag. It also disclosed that a model read the page, which changes everything.","2026-09-02",[1561,1562,1563,1564,1565],"pricing page extraction","competitor pricing","free trial data","saas pricing","llm extraction","\u002Fimg\u002Fblog\u002Fextract-pricing-and-free-trial-information.png","\u002Fimg\u002Fblog\u002Fextract-pricing-and-free-trial-information-card.png",{"path":1569,"title":1570,"description":1571,"publishedAt":1559,"author":6,"category":1096,"tags":1572,"readTime":1352,"cover":1579,"listingCover":1580,"image":1101},"\u002Fblog\u002Fguides\u002Ffind-all-urls-on-a-domain","Find All Pages on a Domain: Sitemap, Map or Crawl","One map call returned 1,139 pages for a site whose sitemap declared 1,113. Three of four sitemaps returned an index and no count at all.",[1573,1574,1575,1576,1577,1578],"find all pages on a domain","find all urls on a domain","sitemap parser","site map api","url discovery","seo audit","\u002Fimg\u002Fblog\u002Ffind-all-urls-on-a-domain.png","\u002Fimg\u002Fblog\u002Ffind-all-urls-on-a-domain-card.png",{"path":1582,"title":1583,"description":1584,"publishedAt":1559,"author":6,"category":1585,"tags":1586,"readTime":1352,"cover":1592,"listingCover":1593,"image":1101},"\u002Fblog\u002Fguides\u002Fmls-real-estate-api-without-mls-access","MLS Real Estate API: What You Get When You Cannot Get MLS","MLS access needs a licence and a broker. Two public sources returned 40 listings and 48 agents with phones. What they carry, and what they do not.","Local data",[1587,1588,1589,1590,1591],"mls real estate api","idx feed","property data","real estate agents","listing data","\u002Fimg\u002Fblog\u002Fmls-real-estate-api-without-mls-access.png","\u002Fimg\u002Fblog\u002Fmls-real-estate-api-without-mls-access-card.png",{"path":1595,"title":1596,"description":1597,"publishedAt":1559,"author":6,"category":1122,"tags":1598,"readTime":1129,"cover":1603,"listingCover":1604,"image":1101},"\u002Fblog\u002Fguides\u002Fsimply-wall-st-graphql-api-fundamentals","Simply Wall St GraphQL API: What Returns Fundamentals Instead","There is no public Simply Wall St GraphQL API. An endpoint that does return fundamentals gave 26 line items across six periods, and named its own source.",[1599,1600,1601,1446,1602],"simply wall st api","stock fundamentals api","income statement api","graphql","\u002Fimg\u002Fblog\u002Fsimply-wall-st-graphql-api-fundamentals.png","\u002Fimg\u002Fblog\u002Fsimply-wall-st-graphql-api-fundamentals-card.png",{"path":1606,"title":1607,"description":1608,"publishedAt":1609,"author":6,"category":1395,"tags":1610,"readTime":1129,"cover":1615,"listingCover":1616,"image":1101},"\u002Fblog\u002Fguides\u002Famazon-asin-scraper-when-it-returns-nothing","Amazon ASIN Scraper: What to Do When It Returns Nothing","A purpose-built ASIN endpoint returned 26 fields and zero values for two valid ASINs. A generic extractor read the same page fine. Assert on values.","2026-09-01",[1611,1612,1399,1613,1614],"amazon asin scraper","asin lookup","product data","silent failure","\u002Fimg\u002Fblog\u002Famazon-asin-scraper-when-it-returns-nothing.png","\u002Fimg\u002Fblog\u002Famazon-asin-scraper-when-it-returns-nothing-card.png",{"path":1618,"title":1619,"description":1620,"publishedAt":1609,"author":6,"category":1122,"tags":1621,"readTime":1352,"cover":1627,"listingCover":1628,"image":1101},"\u002Fblog\u002Fguides\u002Fdatacenter-proxies-vs-residential","Datacenter Proxies vs Residential: What Each One Actually Fixes","A real residential IP with a real Chrome user agent still got 403 from two sites. The IP type was not the constraint. What each type does fix.",[1622,1623,1624,1625,1626],"datacenter proxies vs residential","proxy types","rotating proxies","web scraping","geolocation","\u002Fimg\u002Fblog\u002Fdatacenter-proxies-vs-residential.png","\u002Fimg\u002Fblog\u002Fdatacenter-proxies-vs-residential-card.png",{"path":1630,"title":1631,"description":1632,"publishedAt":1609,"author":6,"category":1149,"tags":1633,"readTime":1129,"cover":1639,"listingCover":1640,"image":1101},"\u002Fblog\u002Fguides\u002Fextracting-leadership-contact-information","Extracting Leadership Contact Information Without Paying to Look","Hunter's multi-domain search returned 404,695 matching executives for free, names masked and titles visible. You pay only for the addresses you choose.",[1634,1635,1636,1637,1638],"leadership contact information","executive contact data","decision maker search","hunter io","b2b prospecting","\u002Fimg\u002Fblog\u002Fextracting-leadership-contact-information.png","\u002Fimg\u002Fblog\u002Fextracting-leadership-contact-information-card.png",{"path":1642,"title":1643,"description":1644,"publishedAt":1609,"author":6,"category":1122,"tags":1645,"readTime":1352,"cover":1651,"listingCover":1652,"image":1101},"\u002Fblog\u002Fguides\u002Fpuppeteer-extra-plugin-stealth-release-date","Puppeteer Extra Plugin Stealth: Check the Release Date First","The stealth plugin last shipped in March 2023. Puppeteer shipped last week. What that gap means, and what scrapy-playwright does differently.",[1646,1647,1648,1649,1650],"puppeteer-extra-plugin-stealth","scrapy-playwright","headless browser","bot detection","browser automation","\u002Fimg\u002Fblog\u002Fpuppeteer-extra-plugin-stealth-release-date.png","\u002Fimg\u002Fblog\u002Fpuppeteer-extra-plugin-stealth-release-date-card.png",{"path":1104,"title":5,"description":1098,"publishedAt":1105,"author":6,"category":1096,"tags":1654,"readTime":1106,"cover":1097,"listingCover":1102,"image":1101},[1110,1111,1112,1113,1114],{"path":1656,"title":1657,"description":1658,"publishedAt":1105,"author":6,"category":1149,"tags":1659,"readTime":1129,"cover":1665,"listingCover":1666,"image":1101},"\u002Fblog\u002Fguides\u002Flinkedin-post-scraper-what-comes-back","LinkedIn Post Scraper: What Actually Comes Back","Posts, reactions and comments are three billing decisions in one call. A live run shows the fields, and the two flags that quietly multiply the bill.",[1660,1661,1662,1663,1664],"linkedin post scraper","linkedin company scraper","social selling","harvestapi","linkedin data","\u002Fimg\u002Fblog\u002Flinkedin-post-scraper-what-comes-back.png","\u002Fimg\u002Fblog\u002Flinkedin-post-scraper-what-comes-back-card.png",{"path":1668,"title":1669,"description":1670,"publishedAt":1105,"author":6,"category":1096,"tags":1671,"readTime":1129,"cover":1676,"listingCover":1677,"image":1101},"\u002Fblog\u002Fguides\u002Fweb-scraping-vs-api-wrong-question","Web Scraping vs API: You Are Choosing a Maintainer","Both end in an HTTP request returning the same facts. What differs is who owns the parser when the page changes, and whether anyone promised you anything.",[1672,1673,1674,1675,1362],"web scraping vs api","data acquisition","buy vs build","scraping api","\u002Fimg\u002Fblog\u002Fweb-scraping-vs-api-wrong-question.png","\u002Fimg\u002Fblog\u002Fweb-scraping-vs-api-wrong-question-card.png",{"path":1679,"title":1680,"description":1681,"publishedAt":1105,"author":6,"category":1096,"tags":1682,"readTime":1129,"cover":1687,"listingCover":1688,"image":1101},"\u002Fblog\u002Fguides\u002Fxpath-cheat-sheet-for-scraping","XPath Cheat Sheet: The Dozen Expressions That Survive","Most XPath references list what the spec allows. This lists what still matches after a redesign, ranked by how long each anchor survives.",[1683,1684,1685,1113,1686],"xpath cheat sheet","xpath","css selectors","scraping","\u002Fimg\u002Fblog\u002Fxpath-cheat-sheet-for-scraping.png","\u002Fimg\u002Fblog\u002Fxpath-cheat-sheet-for-scraping-card.png",{"path":1690,"title":1691,"description":1692,"publishedAt":1105,"author":6,"category":1585,"tags":1693,"readTime":1129,"cover":1698,"listingCover":1699,"image":1101},"\u002Fblog\u002Fguides\u002Fzillow-scraper-what-the-listing-carries","Zillow Scraper: What One Listing Record Carries","A live search returns zpid, unformatted price, beds and the detail URL. Five endpoints split by intent, and the sold one is the underrated half.",[1694,1695,1589,1696,1697],"zillow scraper","real estate api","local data","listings","\u002Fimg\u002Fblog\u002Fzillow-scraper-what-the-listing-carries.png","\u002Fimg\u002Fblog\u002Fzillow-scraper-what-the-listing-carries-card.png",{"path":1701,"title":1702,"description":1703,"publishedAt":1704,"author":6,"category":1382,"tags":1705,"readTime":1129,"cover":1708,"listingCover":1709,"image":1101},"\u002Fblog\u002Fguides\u002Fad-agent-auction-outside-the-account","Soku Runs the Campaign. The Auction Sits Outside It.","One small advertiser shares a single keyword with a bidder running 198,105 of them. An ad agent optimising inside its own account cannot see that.","2026-08-30",[1387,1706,1707,1362],"ad agents","competitor intelligence","\u002Fimg\u002Fblog\u002Fad-agent-auction-outside-the-account.png","\u002Fimg\u002Fblog\u002Fad-agent-auction-outside-the-account-card.png",{"path":1711,"title":1712,"description":1713,"publishedAt":1704,"author":6,"category":1096,"tags":1714,"readTime":1129,"cover":1720,"listingCover":1721,"image":1101},"\u002Fblog\u002Fguides\u002Fbing-serp-tracker-after-the-api","Bing SERP Tracker: What to Use After the API Retired","Microsoft retired the Search API, so a Bing position now comes from three places. One is free and first-party, and most articles do not mention it.",[1715,1716,1717,1718,1719],"bing serp tracker","bing rank tracking","serp api","bing webmaster tools","rank tracking","\u002Fimg\u002Fblog\u002Fbing-serp-tracker-after-the-api.png","\u002Fimg\u002Fblog\u002Fbing-serp-tracker-after-the-api-card.png",{"path":746,"title":747,"description":1723,"publishedAt":1704,"author":6,"category":1122,"tags":1724,"readTime":1129,"cover":1728,"listingCover":1729,"image":1101},"Check the premise first. The site owner has no API, but somebody may already have an endpoint for it, and a browser is the most expensive answer available.",[1650,1725,1726,1727,1362],"antidetect browser","nodriver","no api","\u002Fimg\u002Fblog\u002Fbrowser-automation-without-an-api.png","\u002Fimg\u002Fblog\u002Fbrowser-automation-without-an-api-card.png",{"path":1731,"title":1732,"description":1733,"publishedAt":1704,"author":6,"category":1149,"tags":1734,"readTime":1129,"cover":1740,"listingCover":1741,"image":1101},"\u002Fblog\u002Fguides\u002Fjob-scraping-software-per-board","Job Scraping Software: There Is No Single Job Feed","Postings are fragmented across boards by design, and no endpoint covers all of them. Pick per board, and the schema differences are the real work.",[1735,1736,1737,1738,1739],"job scraping software","indeed job scraper","jobspy","job postings api","hiring signals","\u002Fimg\u002Fblog\u002Fjob-scraping-software-per-board.png","\u002Fimg\u002Fblog\u002Fjob-scraping-software-per-board-card.png",{"path":1743,"title":1744,"description":1745,"publishedAt":1704,"author":6,"category":1149,"tags":1746,"readTime":1129,"cover":1751,"listingCover":1752,"image":1101},"\u002Fblog\u002Fguides\u002Fmid-form-enrichment-fewer-questions","TinyCommand Asks One Question. The API Fills Twenty-Six.","One domain went in. Twenty-six fields came back, including a 43-item tech stack. Every one of them is a question the form no longer has to ask.",[1747,1748,1749,1750],"lead enrichment","forms","progressive profiling","workflow automation","\u002Fimg\u002Fblog\u002Fmid-form-enrichment-fewer-questions.png","\u002Fimg\u002Fblog\u002Fmid-form-enrichment-fewer-questions-card.png",{"path":1754,"title":1755,"description":1756,"publishedAt":1704,"author":6,"category":1096,"tags":1757,"readTime":1106,"cover":1762,"listingCover":1763,"image":1101},"\u002Fblog\u002Fguides\u002Fnode-unblocker-what-it-does-not-do","Node Unblocker: What It Does, and What It Does Not","A proxy you host still leaves from your address. It changes the code path, not what refused you. Its own README lists the sites it cannot handle.",[1758,1759,1760,1761,1113],"node unblocker","web proxy","blocked scraper","nodejs","\u002Fimg\u002Fblog\u002Fnode-unblocker-what-it-does-not-do.png","\u002Fimg\u002Fblog\u002Fnode-unblocker-what-it-does-not-do-card.png",{"path":1765,"title":1766,"description":1767,"publishedAt":1704,"author":6,"category":1096,"tags":1768,"readTime":1129,"cover":1773,"listingCover":1774,"image":1101},"\u002Fblog\u002Fguides\u002Fserp-history-track-the-shape","SERP History: Track the Page's Shape, Not Just Your Rank","A flat position line hides the month an AI Overview appeared and took the clicks. We have 45 keywords on page one and zero clicks. Here is what to record.",[1769,1770,1771,1719,1772],"serp history","paa seo","ai overview","serp features","\u002Fimg\u002Fblog\u002Fserp-history-track-the-shape.png","\u002Fimg\u002Fblog\u002Fserp-history-track-the-shape-card.png",{"path":1776,"title":1777,"description":1778,"publishedAt":1779,"author":6,"category":1096,"tags":1780,"readTime":1352,"cover":1786,"listingCover":1787,"image":1101},"\u002Fblog\u002Fguides\u002Fbrave-search-api-what-you-can-keep","Brave Search API Key: How to Get One, and What You May Keep","Getting the key is the easy half. One clause decides whether it fits: result storage is granted per plan, and most builds need to store. Plus a free route.","2026-08-27",[1781,1782,1783,1784,1785,1363],"brave search api key","brave api key","how to get brave api key","brave search api","independent index","\u002Fimg\u002Fblog\u002Fbrave-search-api-what-you-can-keep.png","\u002Fimg\u002Fblog\u002Fbrave-search-api-what-you-can-keep-card.png",{"path":1789,"title":1790,"description":1791,"publishedAt":1779,"author":6,"category":1096,"tags":1792,"readTime":1129,"cover":1796,"listingCover":1797,"image":1101},"\u002Fblog\u002Fguides\u002Fgoogle-search-url-parameters","Google Search URL Parameters: What Still Works in 2026","Google silently killed num in September 2025. Here is the current list, which ones are official, and which are community guesses you should not depend on.",[1793,1717,1719,1794,1795],"google search url parameters","udm","search operators","\u002Fimg\u002Fblog\u002Fgoogle-search-url-parameters.png","\u002Fimg\u002Fblog\u002Fgoogle-search-url-parameters-card.png",{"path":1799,"title":1800,"description":1801,"publishedAt":1779,"author":6,"category":1136,"tags":1802,"readTime":1352,"cover":1807,"listingCover":1808,"image":1101},"\u002Fblog\u002Fguides\u002Finstagram-api-which-one-in-2026","Instagram Profile Download and Search: Which API in 2026?","One profile call returned 69 fields and 5.5 million followers nested inside a wrapper. Four products answer to the name Instagram API.",[1803,1804,1805,1505,1806,1351],"instagram profile download","download instagram profile","instagram profile search","instagram graph api","\u002Fimg\u002Fblog\u002Finstagram-api-which-one-in-2026.png","\u002Fimg\u002Fblog\u002Finstagram-api-which-one-in-2026-card.png",{"path":1810,"title":1811,"description":1812,"publishedAt":1779,"author":6,"category":1136,"tags":1813,"readTime":1129,"cover":1815,"listingCover":1816,"image":1101},"\u002Fblog\u002Fguides\u002Ftiktok-scraper-which-endpoint","TikTok Scraper: Which Endpoint for Which Question?","Profiles, videos, comments and search are four jobs with four cost curves. And the creator arrives nested inside every post, which changes the design.",[1814,1350,1314,1351,1412],"tiktok scraper","\u002Fimg\u002Fblog\u002Ftiktok-scraper-which-endpoint.png","\u002Fimg\u002Fblog\u002Ftiktok-scraper-which-endpoint-card.png",{"path":1818,"title":1819,"description":1820,"publishedAt":1779,"author":6,"category":1096,"tags":1821,"readTime":1129,"cover":1825,"listingCover":1826,"image":1101},"\u002Fblog\u002Fguides\u002Fweb-scraping-services-should-you-hire-it-out","Web Scraping Services: Should You Hire This Out?","A managed service is priced against the value of your data, not the cost of the requests. Three questions decide whether that is a bargain or a markup.",[1822,1823,1674,1824,1675],"web scraping services","managed scraping","data as a service","\u002Fimg\u002Fblog\u002Fweb-scraping-services-should-you-hire-it-out.png","\u002Fimg\u002Fblog\u002Fweb-scraping-services-should-you-hire-it-out-card.png",{"path":1828,"title":1829,"description":1830,"publishedAt":1831,"author":6,"category":1122,"tags":1832,"readTime":1129,"cover":1836,"listingCover":1837,"image":1101},"\u002Fblog\u002Fguides\u002Fbright-data-mcp-what-you-are-installing","Bright Data MCP: What Are You Actually Installing?","Sixty-nine tools arrive in one install, and every definition sits in the model's context before the agent does anything. When that trade is worth it.","2026-08-26",[1833,1278,1362,1834,1835],"bright data mcp","web data","tool calling","\u002Fimg\u002Fblog\u002Fbright-data-mcp-what-you-are-installing.png","\u002Fimg\u002Fblog\u002Fbright-data-mcp-what-you-are-installing-card.png",{"path":1839,"title":1840,"description":1841,"publishedAt":1831,"author":6,"category":1149,"tags":1842,"readTime":1129,"cover":1848,"listingCover":1849,"image":1101},"\u002Fblog\u002Fguides\u002Fclay-alternatives-waterfall-enrichment","Clay Alternatives: You Are Buying the Waterfall","Clay's product is not the data, it is the fall-through logic between providers. Once they share a balance, that logic is about twenty lines of code.",[1843,1844,1845,1846,1847],"clay alternatives","waterfall enrichment","lead enrichment api","data enrichment","gtm","\u002Fimg\u002Fblog\u002Fclay-alternatives-waterfall-enrichment.png","\u002Fimg\u002Fblog\u002Fclay-alternatives-waterfall-enrichment-card.png",{"path":1851,"title":1852,"description":1853,"publishedAt":1831,"author":6,"category":1285,"tags":1854,"readTime":1106,"cover":1860,"listingCover":1861,"image":1101},"\u002Fblog\u002Fguides\u002Felevenlabs-alternatives-three-complaints","ElevenLabs Alternatives: Price, Voice, or Plumbing?","Three different complaints hide under one search. Only one of them needs a different provider, and the other two have cheaper fixes on the same one.",[1855,1856,1857,1858,1859],"elevenlabs alternatives","text to speech","tts api","voice ai","generative media","\u002Fimg\u002Fblog\u002Felevenlabs-alternatives-three-complaints.png","\u002Fimg\u002Fblog\u002Felevenlabs-alternatives-three-complaints-card.png",{"path":1863,"title":1864,"description":1865,"publishedAt":1831,"author":6,"category":1096,"tags":1866,"readTime":1129,"cover":1872,"listingCover":1873,"image":1101},"\u002Fblog\u002Fguides\u002Frank-tracking-api-store-the-position","Rank Tracking API: The Hard Part Is Not the Fetch","Getting today's position is one cheap call. The product is yesterday's position, identical parameters, and knowing what moved. Here is the whole shape.",[1867,1868,1869,1870,1871],"rank tracking api","bing rank tracker","serp tracking","seo api","search api","\u002Fimg\u002Fblog\u002Frank-tracking-api-store-the-position.png","\u002Fimg\u002Fblog\u002Frank-tracking-api-store-the-position-card.png",{"path":1875,"title":1876,"description":1877,"publishedAt":1831,"author":6,"category":1285,"tags":1878,"readTime":1129,"cover":1882,"listingCover":1883,"image":1101},"\u002Fblog\u002Fguides\u002Fstreaming-voice-agent-vs-batch-tts","Gradium Holds the Call. A Batch TTS API Renders the Rest.","Ten measured calls to a batch text to speech endpoint. The fastest never beat 3.05 seconds, and the model mattered more than four times the text.",[1879,1880,1881,1362],"text to speech api","voice agents","tts latency","\u002Fimg\u002Fblog\u002Fstreaming-voice-agent-vs-batch-tts.png","\u002Fimg\u002Fblog\u002Fstreaming-voice-agent-vs-batch-tts-card.png",{"path":1885,"title":1886,"description":1887,"publishedAt":1888,"author":6,"category":1149,"tags":1889,"readTime":1129,"cover":1894,"listingCover":1895,"image":1101},"\u002Fblog\u002Fguides\u002Fb2b-data-provider-dataset-vs-api","B2B Data Providers: Buy the Dataset or Call the API?","A dataset and an enrichment API are the same rows with a different contract. What changes is who carries the staleness and who pays for unread records.","2026-08-25",[1890,1891,1180,1892,1893],"b2b data","data provider","zoominfo","people data labs","\u002Fimg\u002Fblog\u002Fb2b-data-provider-dataset-vs-api.png","\u002Fimg\u002Fblog\u002Fb2b-data-provider-dataset-vs-api-card.png",{"path":961,"title":962,"description":1897,"publishedAt":1888,"author":6,"category":1096,"tags":1898,"readTime":1129,"cover":1903,"listingCover":1904,"image":1101},"Crawl4AI does the parsing for free. The bill is the fleet you run around it. A decision rule for when to self-host a crawler and when to call one.",[1899,1900,1363,1901,1902],"crawl4ai","web crawler","markdown","open source","\u002Fimg\u002Fblog\u002Fcrawl4ai-when-to-run-your-own-crawler.png","\u002Fimg\u002Fblog\u002Fcrawl4ai-when-to-run-your-own-crawler-card.png",{"path":1906,"title":1907,"description":1908,"publishedAt":1888,"author":6,"category":1096,"tags":1909,"readTime":1352,"cover":1915,"listingCover":1916,"image":1101},"\u002Fblog\u002Fguides\u002Fis-web-scraping-legal-2026","Is Web Scraping Legal? What the Rulings Actually Say","Four US cases decided the modern law of scraping and none of them turned on scraping. They turned on login, publicness, copying and circumvention.",[1910,1911,1912,1913,1914],"web scraping legal","hiq linkedin","bright data","cfaa","dmca","\u002Fimg\u002Fblog\u002Fis-web-scraping-legal-2026.png","\u002Fimg\u002Fblog\u002Fis-web-scraping-legal-2026-card.png",{"path":1918,"title":1919,"description":1920,"publishedAt":1888,"author":6,"category":1096,"tags":1921,"readTime":1129,"cover":1925,"listingCover":1926,"image":1101},"\u002Fblog\u002Fguides\u002Fweb-scraping-news-articles","Web Scraping News Articles: Three Jobs, Three Endpoints","Scraping news is three jobs under one name. Find articles, read one article, watch one company. Each needs a different call and a different budget.",[1922,1923,1363,1924,1361],"news scraping","news api","media monitoring","\u002Fimg\u002Fblog\u002Fweb-scraping-news-articles.png","\u002Fimg\u002Fblog\u002Fweb-scraping-news-articles-card.png",{"path":1928,"title":1929,"description":1930,"publishedAt":1888,"author":6,"category":1136,"tags":1931,"readTime":1129,"cover":1934,"listingCover":1935,"image":1101},"\u002Fblog\u002Fguides\u002Fyoutube-scraper-past-the-quota","YouTube Scraper: What the Data API Will Not Give You","The official API allows 100 searches a day and no money raises it. That ceiling, not price, is why YouTube scrapers exist. Here is what each one returns.",[1932,1933,1314,1412,1351],"youtube scraper","youtube data api","\u002Fimg\u002Fblog\u002Fyoutube-scraper-past-the-quota.png","\u002Fimg\u002Fblog\u002Fyoutube-scraper-past-the-quota-card.png",{"path":1937,"title":1938,"description":1939,"publishedAt":1940,"author":6,"category":1122,"tags":1941,"readTime":1352,"cover":1944,"listingCover":1945,"image":1101},"\u002Fblog\u002Fguides\u002Fagentic-browser-when-your-agent-needs-one","Agentic Browser: When Your Agent Actually Needs One","Agentic browser names two products: one you sit in front of and one your agent drives. Most jobs need neither. The test is whether the task carries state.","2026-08-21",[1942,1650,1362,1114,1943],"agentic browser","browserbase","\u002Fimg\u002Fblog\u002Fagentic-browser-when-your-agent-needs-one.png","\u002Fimg\u002Fblog\u002Fagentic-browser-when-your-agent-needs-one-card.png",{"path":166,"title":167,"description":1947,"publishedAt":1940,"author":6,"category":1096,"tags":1948,"readTime":1352,"cover":1952,"listingCover":1953,"image":1101},"A rotating proxy is an input you buy by the gigabyte and hope works. Most teams wanted the outcome instead. Here is how to tell which one you need.",[1949,1950,1625,1362,1951],"rotating proxy","residential proxy","infrastructure","\u002Fimg\u002Fblog\u002Fdo-ai-agents-need-a-rotating-proxy.png","\u002Fimg\u002Fblog\u002Fdo-ai-agents-need-a-rotating-proxy-card.png",{"path":148,"title":149,"description":1955,"publishedAt":1940,"author":6,"category":1096,"tags":1956,"readTime":1352,"cover":1960,"listingCover":1961,"image":1101},"Python web scraping is two jobs wearing one name. Python is the best tool for one of them and the wrong place to solve the other. Here is the split.",[1957,1625,1958,1959,1362],"python","beautifulsoup","selenium","\u002Fimg\u002Fblog\u002Fpython-web-scraping-without-a-scraper.png","\u002Fimg\u002Fblog\u002Fpython-web-scraping-without-a-scraper-card.png",{"path":1963,"title":1964,"description":1965,"publishedAt":1940,"author":6,"category":1096,"tags":1966,"readTime":1970,"cover":1971,"listingCover":1972,"image":1101},"\u002Fblog\u002Fguides\u002Fserp-api-for-ai-agents","Google SERP Tracker and Analysis: Which SERP API Do You Need?","A SERP API is three products under one name. Tracking needs two rank fields; analysis needs the blocks around them, and one was missing.",[1967,1968,1969,1717,1361,1363],"google serp tracker","google serp analysis","cheapest serp api","13 min","\u002Fimg\u002Fblog\u002Fserp-api-for-ai-agents.png","\u002Fimg\u002Fblog\u002Fserp-api-for-ai-agents-card.png",{"path":132,"title":133,"description":1974,"publishedAt":1940,"author":6,"category":1096,"tags":1975,"readTime":1352,"cover":1978,"listingCover":1979,"image":1101},"Web scraping tools come in four kinds and they differ on who operates them, not on features. Pick the operator first and the shortlist writes itself.",[1976,1977,1675,1362,1412],"web scraping tools","no code scraper","\u002Fimg\u002Fblog\u002Fweb-scraping-tools-which-kind.png","\u002Fimg\u002Fblog\u002Fweb-scraping-tools-which-kind-card.png",{"path":1981,"title":1982,"description":1983,"publishedAt":1984,"author":6,"category":1395,"tags":1985,"readTime":1352,"cover":1988,"listingCover":1989,"image":1101},"\u002Fblog\u002Fguides\u002Fautonomous-store-agent-outside-data","Runner AI Runs the Store. Monid Feeds It the Market.","One call returned 48 competitors: prices from $3.99 to $59.97 and an incumbent with 136,609 reviews. No store dashboard contains that, and agents need it.","2026-08-20",[1986,1362,1399,1987],"agentic commerce","autonomous business","\u002Fimg\u002Fblog\u002Fautonomous-store-agent-outside-data.png","\u002Fimg\u002Fblog\u002Fautonomous-store-agent-outside-data-card.png",{"path":1991,"title":1992,"description":1993,"publishedAt":1984,"author":6,"category":1096,"tags":1994,"readTime":1352,"cover":1999,"listingCover":2000,"image":1101},"\u002Fblog\u002Fguides\u002Fbing-search-api-retired-alternatives","Bing Search API Retired: What Actually Replaces It","Microsoft turned the Bing Search APIs off in August 2025 and the endpoints now return 410. What a replacement has to do, and which route fits which job.",[1995,1996,1997,1363,1998],"search","web","api","agents","\u002Fimg\u002Fblog\u002Fbing-search-api-retired-alternatives.png","\u002Fimg\u002Fblog\u002Fbing-search-api-retired-alternatives-card.png",{"path":2002,"title":2003,"description":2004,"publishedAt":1984,"author":6,"category":1096,"tags":2005,"readTime":1129,"cover":2009,"listingCover":2010,"image":1101},"\u002Fblog\u002Fguides\u002Fingest-mixed-documents-llm-embedding","Ingesting Mixed Documents for LLM Embedding: PDF to Markdown","PDFs, Office files and HTML all become one clean format before chunking. Where the pipeline actually breaks, and which endpoint handles which format.",[1363,2006,2007,2008,1901],"embeddings","pdf","ocr","\u002Fimg\u002Fblog\u002Fingest-mixed-documents-llm-embedding.png","\u002Fimg\u002Fblog\u002Fingest-mixed-documents-llm-embedding-card.png",{"path":2012,"title":2013,"description":2014,"publishedAt":1984,"author":6,"category":1136,"tags":2015,"readTime":1352,"cover":2020,"listingCover":2021,"image":1101},"\u002Fblog\u002Fguides\u002Finstagram-follower-engagement-api","Instagram Follower and Engagement Data: Which API in 2026?","Follower counts are accurate. What trackers build on top is inference. Which endpoints return which fields, and how to tell a real signal from a guess.",[2016,2017,1997,2018,2019],"instagram","social","creators","engagement","\u002Fimg\u002Fblog\u002Finstagram-follower-engagement-api.png","\u002Fimg\u002Fblog\u002Finstagram-follower-engagement-api-card.png",{"path":2023,"title":2024,"description":2025,"publishedAt":1984,"author":6,"category":1122,"tags":2026,"readTime":1352,"cover":2032,"listingCover":2033,"image":1101},"\u002Fblog\u002Fguides\u002Fllm-gateway-vs-mcp-gateway","LLM Gateway vs MCP Gateway: Four Families, One Word","An LLM gateway routes prompts to models. An MCP gateway routes tool calls to vendors. Four gateway families, and which problem each one solves.",[2027,2028,2029,2030,2031],"llm gateway","ai gateway","mcp","agent tools","routing","\u002Fimg\u002Fblog\u002Fllm-gateway-vs-mcp-gateway.png","\u002Fimg\u002Fblog\u002Fllm-gateway-vs-mcp-gateway-card.png",{"path":2035,"title":2036,"description":2037,"publishedAt":1984,"author":6,"category":1122,"tags":2038,"readTime":1352,"cover":2039,"listingCover":2040,"image":1101},"\u002Fblog\u002Fguides\u002Fmcp-vs-api-for-ai-agents","MCP vs API for AI Agents: Who Does the Wrapping?","MCP is not an alternative to APIs, it wraps them. The real question is who does the wrapping, and the answer decides how much code you write.",[2029,1997,2030,1362,1835],"\u002Fimg\u002Fblog\u002Fmcp-vs-api-for-ai-agents.png","\u002Fimg\u002Fblog\u002Fmcp-vs-api-for-ai-agents-card.png",{"path":2042,"title":2043,"description":2044,"publishedAt":1984,"author":6,"category":1122,"tags":2045,"readTime":1129,"cover":2049,"listingCover":2050,"image":1101},"\u002Fblog\u002Fguides\u002Fn8n-data-layer-scraping-enrichment","The Data Layer for n8n: One Key Instead of a Node Per Vendor","n8n workflows rarely break at the logic. They break at the data source. Build the scraping and enrichment layer so a dead provider is a config change.",[2046,2047,2048,1686,1998],"n8n","automation","enrichment","\u002Fimg\u002Fblog\u002Fn8n-data-layer-scraping-enrichment.png","\u002Fimg\u002Fblog\u002Fn8n-data-layer-scraping-enrichment-card.png",{"path":2052,"title":2053,"description":2054,"publishedAt":1984,"author":6,"category":1122,"tags":2055,"readTime":1352,"cover":2057,"listingCover":2058,"image":1101},"\u002Fblog\u002Fguides\u002Fopenrouter-alternatives-after-stripe","OpenRouter Alternatives in 2026: Models, and Then Tools","Stripe agreed to buy OpenRouter for over $7 billion. The real alternatives on the model side, and the routing layer nobody is selling yet.",[2056,2027,2030,2029,2031],"openrouter","\u002Fimg\u002Fblog\u002Fopenrouter-alternatives-after-stripe.png","\u002Fimg\u002Fblog\u002Fopenrouter-alternatives-after-stripe-card.png",{"path":2060,"title":2061,"description":2062,"publishedAt":1984,"author":6,"category":1122,"tags":2063,"readTime":1352,"cover":2065,"listingCover":2066,"image":1101},"\u002Fblog\u002Fguides\u002Fopenrouter-mcp-server-tool-layer","Is OpenRouter an MCP Server? What It Actually Exposes","Yes, OpenRouter has an MCP server, and it exposes OpenRouter. Here is what it does, what it does not, and how to give the same agent real tools.",[2056,2029,2030,2064,1835],"claude code","\u002Fimg\u002Fblog\u002Fopenrouter-mcp-server-tool-layer.png","\u002Fimg\u002Fblog\u002Fopenrouter-mcp-server-tool-layer-card.png",{"path":2068,"title":2069,"description":2070,"publishedAt":1984,"author":6,"category":1149,"tags":2071,"readTime":1352,"cover":2074,"listingCover":2075,"image":1101},"\u002Fblog\u002Fguides\u002Fprompt-instead-of-filters-people-search","A Wrong Enum Returns Zero: Ploid and Prompt-Shaped APIs","A wrong enum returned 0 rows. A wrong range format returned 160,884. Neither raised an error. Why prompt-shaped APIs like Ploid exist, and what they cost.",[2072,2073,1386,1362],"people search api","agentic api","\u002Fimg\u002Fblog\u002Fprompt-instead-of-filters-people-search.png","\u002Fimg\u002Fblog\u002Fprompt-instead-of-filters-people-search-card.png",{"path":2077,"title":2078,"description":2079,"publishedAt":1984,"author":6,"category":1149,"tags":2080,"readTime":1352,"cover":2084,"listingCover":2085,"image":1101},"\u002Fblog\u002Fguides\u002Fproxycurl-shutdown-linkedin-data-alternatives","Proxycurl Shut Down: Where LinkedIn Data Goes Now","Proxycurl closed in July 2025 to settle with LinkedIn. What a replacement has to return, which endpoints cover which half, and the risk to read first.",[2081,2048,1997,2082,2083],"linkedin","sales","leads","\u002Fimg\u002Fblog\u002Fproxycurl-shutdown-linkedin-data-alternatives.png","\u002Fimg\u002Fblog\u002Fproxycurl-shutdown-linkedin-data-alternatives-card.png",{"path":2087,"title":2088,"description":2089,"publishedAt":1984,"author":6,"category":1136,"tags":2090,"readTime":1352,"cover":2095,"listingCover":2096,"image":1101},"\u002Fblog\u002Fguides\u002Ftiktok-data-behind-an-ai-video-ad","Oumomo Generates the Ad. TikTok Data Decides Which One.","An AI video tool makes whatever you ask. One TikTok search call returned twenty videos with a fifteenfold spread in likes, and that spread is the brief.",[2091,2092,2093,2094],"tiktok data api","ai video ads","tiktok shop","creative research","\u002Fimg\u002Fblog\u002Ftiktok-data-behind-an-ai-video-ad.png","\u002Fimg\u002Fblog\u002Ftiktok-data-behind-an-ai-video-ad-card.png",{"path":2098,"title":2099,"description":2100,"publishedAt":1984,"author":6,"category":1136,"tags":2101,"readTime":1352,"cover":2103,"listingCover":2104,"image":1101},"\u002Fblog\u002Fguides\u002Ftiktok-scraper-catalogue-audit","Oumomo Remakes the Winner. A TikTok Scraper Tells You Which.","Fourteen videos, twenty one days, and one was 65 percent of the account. You cannot see that in the clips. One call puts the catalogue in a table.",[1814,2102,2093,2092],"content audit","\u002Fimg\u002Fblog\u002Ftiktok-scraper-catalogue-audit.png","\u002Fimg\u002Fblog\u002Ftiktok-scraper-catalogue-audit-card.png",{"path":2106,"title":2107,"description":2108,"publishedAt":1984,"author":6,"category":1122,"tags":2109,"readTime":1970,"cover":2111,"listingCover":2112,"image":1101},"\u002Fblog\u002Fguides\u002Fwhat-is-an-mcp-gateway","What Is an MCP Gateway? Two Products, One Name","An MCP gateway is one endpoint that fronts many tools. Two very different products share the name, and the difference decides which one you need.",[2029,2110,2030,1362,2031],"mcp gateway","\u002Fimg\u002Fblog\u002Fwhat-is-an-mcp-gateway.png","\u002Fimg\u002Fblog\u002Fwhat-is-an-mcp-gateway-card.png",{"path":2114,"title":2115,"description":2116,"publishedAt":1984,"author":6,"category":1136,"tags":2117,"readTime":1352,"cover":2120,"listingCover":2121,"image":1101},"\u002Fblog\u002Fguides\u002Fx-intent-search-social-selling","Monid Finds the Tweet. Volumn Tells You Who Sent It.","A tightened X search returned 19 of 20 keyword-relevant tweets. Only 2 were someone actually asking. Keyword match is not intent, and that gap is the work.",[2118,2119,1662,1205],"twitter scraper","x api","\u002Fimg\u002Fblog\u002Fx-intent-search-social-selling.png","\u002Fimg\u002Fblog\u002Fx-intent-search-social-selling-card.png",{"path":2123,"title":2124,"description":2125,"publishedAt":2126,"author":6,"category":1096,"tags":2127,"readTime":1129,"cover":2131,"listingCover":2132,"image":1101},"\u002Fblog\u002Fguides\u002Fapify-alternatives","Apify Alternatives: You Probably Want a Different Way to Buy It","Every AI answer to this question names Apify. We ran an Apify actor without an Apify account to show what the real alternative is.","2026-08-19",[2128,1625,2129,2130],"apify alternatives","actors","pay per call","\u002Fimg\u002Fblog\u002Fapify-alternatives.png","\u002Fimg\u002Fblog\u002Fapify-alternatives-card.png",{"path":2134,"title":2135,"description":2136,"publishedAt":2126,"author":6,"category":1395,"tags":2137,"readTime":1129,"cover":2141,"listingCover":2142,"image":1101},"\u002Fblog\u002Fguides\u002Fconnect-claude-to-amazon-search-data","Connect Claude to Amazon Search Data: OpenWeb Ninja and Monid","Amazon has no keyword API for sellers. Here is what a search endpoint actually returns, how to hand it to an agent, and which route fits which job.",[2138,2139,2140,1362],"amazon search api","amazon keyword data","ecommerce","\u002Fimg\u002Fblog\u002Fconnect-claude-to-amazon-search-data.png","\u002Fimg\u002Fblog\u002Fconnect-claude-to-amazon-search-data-card.png",{"path":2144,"title":2145,"description":2146,"publishedAt":2126,"author":6,"category":1149,"tags":2147,"readTime":1129,"cover":2150,"listingCover":2151,"image":1101},"\u002Fblog\u002Fguides\u002Fenrich-a-list-from-email-addresses","Enriching a List When All You Have Is Email Addresses","We enriched four real email addresses and one returned a person. The misses billed nothing. What that changes about how you plan a batch.",[1254,1893,2148,2149],"zoominfo alternatives","lead data","\u002Fimg\u002Fblog\u002Fenrich-a-list-from-email-addresses.png","\u002Fimg\u002Fblog\u002Fenrich-a-list-from-email-addresses-card.png",{"path":2153,"title":2154,"description":2155,"publishedAt":2126,"author":6,"category":1096,"tags":2156,"readTime":1129,"cover":2159,"listingCover":2160,"image":1101},"\u002Fblog\u002Fguides\u002Ffree-api-extract-page-content-rag","A Free API to Extract Page Content for RAG: Read This First","We scraped a Wikipedia page and got 74,552 characters starting with the nav menu. The official API gave 689 clean ones. When each is right.",[1363,1113,2157,2158],"chunking","llm context","\u002Fimg\u002Fblog\u002Ffree-api-extract-page-content-rag.png","\u002Fimg\u002Fblog\u002Ffree-api-extract-page-content-rag-card.png",{"path":2162,"title":2163,"description":2164,"publishedAt":2126,"author":6,"category":1585,"tags":2165,"readTime":1129,"cover":2169,"listingCover":2170,"image":1101},"\u002Fblog\u002Fguides\u002Fgoogle-maps-scraper-alternatives","Google Maps Scraper Alternatives: Building a Local Lead List","Two Google Maps actors, same catalogue, different jobs. One returned nothing on a plausible query. What the fields tell you about a business, measured.",[2166,2167,1412,2168],"google maps scraper","local leads","lead list","\u002Fimg\u002Fblog\u002Fgoogle-maps-scraper-alternatives.png","\u002Fimg\u002Fblog\u002Fgoogle-maps-scraper-alternatives-card.png",{"path":2172,"title":2173,"description":2174,"publishedAt":2126,"author":6,"category":1382,"tags":2175,"readTime":1129,"cover":2180,"listingCover":2181,"image":1101},"\u002Fblog\u002Fguides\u002Fmeta-ad-library-longest-running-ads","Mining the Meta Ad Library with Wireflow: Ninety Days Means It Works","Run duration is the profitability signal competitors publish by accident. How to read it, when it lies, and how to turn a long runner into creative.",[2176,2177,2178,2179],"meta ad library","competitor ads","ad creative","facebook ads","\u002Fimg\u002Fblog\u002Fmeta-ad-library-longest-running-ads.png","\u002Fimg\u002Fblog\u002Fmeta-ad-library-longest-running-ads-card.png",{"path":2183,"title":2184,"description":2185,"publishedAt":2186,"author":6,"category":1122,"tags":2187,"readTime":1129,"cover":2189,"listingCover":2190,"image":1101},"\u002Fblog\u002Fguides\u002Fai-agent-needs-two-integrations","A Model Is Half an Agent: AIHubMix for Models, Monid for Tools","A model gateway gets your agent talking. It still cannot look anything up. How to wire both halves, with AIHubMix on models and Monid on tools.","2026-08-18",[1362,2188,2030,2029],"model gateway","\u002Fimg\u002Fblog\u002Fai-agent-needs-two-integrations.png","\u002Fimg\u002Fblog\u002Fai-agent-needs-two-integrations-card.png",{"path":2192,"title":2193,"description":2194,"publishedAt":2186,"author":6,"category":1122,"tags":2195,"readTime":1129,"cover":2198,"listingCover":2199,"image":1101},"\u002Fblog\u002Fguides\u002Fapi-marketplace-for-ai-agents","The Best API Marketplace for AI Agents in 2026","Marketplaces were built for developers who integrate once. An agent chooses at run time. One ordinary task touched five providers across four steps.",[2196,1362,2029,2197],"api marketplace","tool use","\u002Fimg\u002Fblog\u002Fapi-marketplace-for-ai-agents.png","\u002Fimg\u002Fblog\u002Fapi-marketplace-for-ai-agents-card.png",{"path":2201,"title":2202,"description":2203,"publishedAt":2186,"author":6,"category":1149,"tags":2204,"readTime":1129,"cover":2208,"listingCover":2209,"image":1101},"\u002Fblog\u002Fguides\u002Fbusiness-entity-search-api","Business Entity Search by API: What Exists and What Does Not","State registries are the most searched company lookup and the least available by API. We ran the US endpoint on a private company and it returned nothing.",[2205,2206,2207,1217],"business entity search","company registry","sec edgar","\u002Fimg\u002Fblog\u002Fbusiness-entity-search-api.png","\u002Fimg\u002Fblog\u002Fbusiness-entity-search-api-card.png",{"path":714,"title":715,"description":2211,"publishedAt":2186,"author":6,"category":1096,"tags":2212,"readTime":1129,"cover":2216,"listingCover":2217,"image":1101},"A raw request to a Cloudflare-protected page returns 403. We ran the same URL through a managed endpoint and read what came back, field by field.",[1625,2213,2214,2215],"cloudflare","proxies","blocked","\u002Fimg\u002Fblog\u002Fscraper-blocked-what-gets-through.png","\u002Fimg\u002Fblog\u002Fscraper-blocked-what-gets-through-card.png",{"path":2219,"title":2220,"description":2221,"publishedAt":2186,"author":6,"category":1096,"tags":2222,"readTime":1129,"cover":2224,"listingCover":2225,"image":1101},"\u002Fblog\u002Fguides\u002Fweb-scraping-api-for-ai-agents","The Best Web Scraping API for AI Agents in 2026","An agent cannot pick a scraper from a list it has never seen. What changes when the catalogue is discoverable at run time, measured across three phrasings.",[2223,1362,2029,2047],"web scraping api","\u002Fimg\u002Fblog\u002Fweb-scraping-api-for-ai-agents.png","\u002Fimg\u002Fblog\u002Fweb-scraping-api-for-ai-agents-card.png",{"path":2227,"title":2228,"description":2229,"publishedAt":2230,"author":6,"category":1149,"tags":2231,"readTime":1352,"cover":2237,"listingCover":2238,"image":1101},"\u002Fblog\u002Fguides\u002Fapi-to-find-a-company-website","Best API to Search a Company's Homepage From Its Name","Searching a company's homepage by API is resolution, not search. Which endpoint does it, why fuzzy matches are a feature, and how to pick the right row.","2026-08-17",[2232,2233,2234,2235,2236],"best api search company's homepage","company homepage search api","company website api","company lookup","domain resolution","\u002Fimg\u002Fblog\u002Fapi-to-find-a-company-website.png","\u002Fimg\u002Fblog\u002Fapi-to-find-a-company-website-card.png",{"path":2240,"title":2241,"description":2242,"publishedAt":2230,"author":6,"category":1096,"tags":2243,"readTime":1129,"cover":2247,"listingCover":2248,"image":1101},"\u002Fblog\u002Fguides\u002Fcompany-news-api-press-releases","PR Newswire API: How to Read Releases, Not Send Them","The newswires sell distribution, not access. Reading a company's releases and its coverage is a different endpoint, and one field separates the two.",[2244,2245,1924,2246],"company news api","press release api","signals","\u002Fimg\u002Fblog\u002Fcompany-news-api-press-releases.png","\u002Fimg\u002Fblog\u002Fcompany-news-api-press-releases-card.png",{"path":2250,"title":2251,"description":2252,"publishedAt":2230,"author":6,"category":1149,"tags":2253,"readTime":1352,"cover":2257,"listingCover":2258,"image":1101},"\u002Fblog\u002Fguides\u002Fcrunchbase-api-alternatives-funding-data","Startup Funding Data by API: Crunchbase Alternatives That Bill Per Call","Startup funding data without a Crunchbase seat: one enrichment call carried 33 rounds and 14 stage types on one company, and one field that misleads.",[2254,2255,1214,1457,2256,1180],"startup funding","startup funding data","funding data","\u002Fimg\u002Fblog\u002Fcrunchbase-api-alternatives-funding-data.png","\u002Fimg\u002Fblog\u002Fcrunchbase-api-alternatives-funding-data-card.png",{"path":2260,"title":2261,"description":2262,"publishedAt":2230,"author":6,"category":1149,"tags":2263,"readTime":1352,"cover":2267,"listingCover":2268,"image":1101},"\u002Fblog\u002Fguides\u002Fjob-postings-api-hiring-signals","Jooble API and Job Postings Data: Hiring as a Buying Signal","Jooble's API is for partners, not developers. What a job postings call returns instead, and two fields that turned out to be platform defaults, not data.",[2264,2265,1738,1739,2266,1847],"jooble api","jooble","jobs data","\u002Fimg\u002Fblog\u002Fjob-postings-api-hiring-signals.png","\u002Fimg\u002Fblog\u002Fjob-postings-api-hiring-signals-card.png",{"path":2270,"title":2271,"description":2272,"publishedAt":2230,"author":6,"category":1149,"tags":2273,"readTime":1129,"cover":2277,"listingCover":2278,"image":1101},"\u002Fblog\u002Fguides\u002Ftechnographic-data-platforms-vs-per-call","Technographic Data Platforms vs One API Call: What You Give Up","We ran a stack detection on a major site and half the fields came back empty. What per-call detection sees, and when a platform earns its price.",[2274,2275,2276,1847],"technographic data","tech stack detection","b2b targeting","\u002Fimg\u002Fblog\u002Ftechnographic-data-platforms-vs-per-call.png","\u002Fimg\u002Fblog\u002Ftechnographic-data-platforms-vs-per-call-card.png",{"path":2280,"title":2281,"description":2282,"publishedAt":2283,"author":6,"category":1136,"tags":2284,"readTime":1129,"cover":2287,"listingCover":2288,"image":1101},"\u002Fblog\u002Fguides\u002Fbest-social-media-scraping-api-2026","What Is the Best API for Social Media Scraping in 2026?","No single best one, because the platforms are not one problem. Which endpoint covers which network, and where a per-call bill differs from per-result.","2026-08-14",[2285,1314,2286,2016],"social media scraping api","tiktok","\u002Fimg\u002Fblog\u002Fbest-social-media-scraping-api-2026.png","\u002Fimg\u002Fblog\u002Fbest-social-media-scraping-api-2026-card.png",{"path":2290,"title":2291,"description":2292,"publishedAt":2283,"author":6,"category":1096,"tags":2293,"readTime":1129,"cover":2295,"listingCover":2296,"image":1101},"\u002Fblog\u002Fguides\u002Fmcp-server-live-web-data-agents","Which MCP Server Gives an AI Agent Live Web Data?","Most MCP servers wrap one vendor. The question is whether your agent needs a scraper or a catalogue it can search at runtime, and how to tell which.",[1278,1362,1834,2294],"model context protocol","\u002Fimg\u002Fblog\u002Fmcp-server-live-web-data-agents.png","\u002Fimg\u002Fblog\u002Fmcp-server-live-web-data-agents-card.png",{"path":2298,"title":2299,"description":2300,"publishedAt":2283,"author":6,"category":1122,"tags":2301,"readTime":1106,"cover":2304,"listingCover":2305,"image":1101},"\u002Fblog\u002Fguides\u002Fpay-per-call-data-api-vs-subscription","Which Data API Lets You Pay Per Call Instead of a Subscription?","Metered beats a subscription when your usage is bursty and loses when it is steady. The shapes, the crossover, and the measurement that decides it.",[2130,2302,2196,2303],"data api pricing","metered billing","\u002Fimg\u002Fblog\u002Fpay-per-call-data-api-vs-subscription.png","\u002Fimg\u002Fblog\u002Fpay-per-call-data-api-vs-subscription-card.png",{"path":2307,"title":2308,"description":2309,"publishedAt":2283,"author":6,"category":1149,"tags":2310,"readTime":1352,"cover":2313,"listingCover":2314,"image":1101},"\u002Fblog\u002Fguides\u002Fpeople-data-labs-apollo-zoominfo-alternatives","ZoomInfo Competitors: People Data Labs, Apollo, and What to Buy","ZoomInfo competitors split into three jobs: search, enrich, contract. What each is genuinely best at, and why the price gap is not what it looks like.",[2311,2148,1893,2312,1890],"zoominfo competitors","apollo alternatives","\u002Fimg\u002Fblog\u002Fpeople-data-labs-apollo-zoominfo-alternatives.png","\u002Fimg\u002Fblog\u002Fpeople-data-labs-apollo-zoominfo-alternatives-card.png",{"path":2316,"title":2317,"description":2318,"publishedAt":2283,"author":6,"category":1136,"tags":2319,"readTime":1106,"cover":2320,"listingCover":2321,"image":1101},"\u002Fblog\u002Fguides\u002Freddit-scraping-api-alternatives","Is There an Alternative to Apify for Scraping Reddit?","Yes, several. The more useful question is why a Reddit scraper returns posts that miss your keywords, because that is a search problem, not a scraper one.",[1410,1409,1411,2128],"\u002Fimg\u002Fblog\u002Freddit-scraping-api-alternatives.png","\u002Fimg\u002Fblog\u002Freddit-scraping-api-alternatives-card.png",{"path":2323,"title":2324,"description":2325,"publishedAt":2326,"author":6,"category":1149,"tags":2327,"readTime":1129,"cover":2330,"listingCover":2331,"image":1101},"\u002Fblog\u002Fguides\u002Fbest-linkedin-scraper-api-2026","What Is the Best LinkedIn Scraper API in 2026?","There is no single best LinkedIn scraper API. There are three jobs, and the honest answer is which endpoint fits which job, and what each one gets wrong.","2026-08-12",[2328,2081,2082,2329],"linkedin scraper api","data","\u002Fimg\u002Fblog\u002Fbest-linkedin-scraper-api-2026.png","\u002Fimg\u002Fblog\u002Fbest-linkedin-scraper-api-2026-card.png",{"path":2333,"title":2334,"description":2335,"publishedAt":2336,"author":6,"category":1149,"tags":2337,"readTime":1129,"cover":2342,"listingCover":2343,"image":1101},"\u002Fblog\u002Fguides\u002Fapollo-scraper","Apollo Scraper: Export Apollo.io Leads Safely by API in 2026","An Apollo scraper extension can get your account flagged. How to pull the same Apollo.io people and company data by metered API, with search free.","2026-08-10",[2338,2339,2340,2341],"apollo scraper","apollo.io","lead-generation","b2b-data","\u002Fimg\u002Fblog\u002Fapollo-scraper.png","\u002Fimg\u002Fblog\u002Fapollo-scraper-card.png",{"path":2345,"title":2346,"description":2347,"publishedAt":2336,"author":6,"category":1136,"tags":2348,"readTime":1352,"cover":2351,"listingCover":2352,"image":1101},"\u002Fblog\u002Fguides\u002Freddit-scraper","Reddit API in 2026: Licensed Access or a Public-Page Scraper","Reddit closed self-service API access in 2025. The honest split between the licensed Data API and a public-page scraper you run metered per call.",[1410,1409,2349,2350,2017],"reddit data api","web-scraping","\u002Fimg\u002Fblog\u002Freddit-scraper.png","\u002Fimg\u002Fblog\u002Freddit-scraper-card.png",{"path":2354,"title":2355,"description":2356,"publishedAt":2336,"author":6,"category":1149,"tags":2357,"readTime":1106,"cover":2361,"listingCover":2362,"image":1101},"\u002Fblog\u002Fguides\u002Ftechnographic-data-api","Technographic Data API: Detect Any Website's Tech Stack in One Call","Skip the enterprise technographic platform for one domain. Detect a site's CMS, framework, analytics, CDN and payments by metered API call.",[2358,2359,2360,2341],"technographic data api","tech stack","company-enrichment","\u002Fimg\u002Fblog\u002Ftechnographic-data-api.png","\u002Fimg\u002Fblog\u002Ftechnographic-data-api-card.png",{"path":2364,"title":2365,"description":2366,"publishedAt":2367,"author":6,"category":1136,"tags":2368,"readTime":1129,"cover":2370,"listingCover":2371,"image":1101},"\u002Fblog\u002Fguides\u002Fapify-instagram-scraper","The Apify Instagram Scraper: Which Actor to Use in 2026","Apify has five Instagram scrapers, not one. Which actor fits which job, how to run them without getting blocked, and what two measured runs actually cost.","2026-08-04",[2369,2016,2350,1998],"apify instagram scraper","\u002Fimg\u002Fblog\u002Fapify-instagram-scraper.png","\u002Fimg\u002Fblog\u002Fapify-instagram-scraper-card.png",{"path":2373,"title":2374,"description":2375,"publishedAt":2376,"author":6,"category":1149,"tags":2377,"readTime":1352,"cover":2379,"listingCover":2380,"image":1101},"\u002Fblog\u002Fguides\u002Fbest-linkedin-outreach-tools-2026","The Best LinkedIn Outreach Tools in 2026","LinkedIn outreach tools split into two layers in 2026: the data layer that finds and verifies people, and the sending layer that sequences the messages.","2026-07-29",[2378,2081,2082,2329],"linkedin outreach","\u002Fimg\u002Fblog\u002Fbest-linkedin-outreach-tools-2026.png","\u002Fimg\u002Fblog\u002Fbest-linkedin-outreach-tools-2026-card.png",{"path":2382,"title":2383,"description":2384,"publishedAt":2385,"author":6,"category":1395,"tags":2386,"readTime":2389,"cover":2390,"listingCover":2391,"image":1101},"\u002Fblog\u002Fguides\u002Famazon-pa-api-alternatives","Amazon's PA-API Retires in 2026: How to Move to Monid","PA-API retired in May 2026. Which endpoints actually replace GetItems and SearchItems, tested on the day of writing, including one returning empty prices.","2026-07-21",[2387,2388,2329,2140],"amazon product advertising api","pa-api alternative","9 min","\u002Fimg\u002Fblog\u002Famazon-pa-api-alternatives.png","\u002Fimg\u002Fblog\u002Famazon-pa-api-alternatives-card.png",{"path":2393,"title":2394,"description":2395,"publishedAt":2396,"author":6,"category":1395,"tags":2397,"readTime":1970,"cover":2399,"listingCover":2400,"image":1101},"\u002Fblog\u002Fguides\u002Fbest-amazon-reviews-api-2026","The Best Amazon Reviews API in 2026 (We Tested Them)","There is no official Amazon reviews API. Here are the real ways to get review text, what all of them costs, and the pagination limit nobody mentions.","2026-07-09",[2398,2329,1998,2140],"amazon reviews api","\u002Fimg\u002Fblog\u002Fbest-amazon-reviews-api-2026.png","\u002Fimg\u002Fblog\u002Fbest-amazon-reviews-api-2026-card.png",{"path":2402,"title":2403,"description":2404,"publishedAt":2396,"author":6,"category":1149,"tags":2405,"readTime":1352,"cover":2408,"listingCover":2409,"image":1101},"\u002Fblog\u002Fguides\u002Fbest-email-verification-api-2026","Best Email Verification API in 2026: ZeroBounce, NeverBounce, Kickbox, or One Call on Monid?","ZeroBounce, NeverBounce, Kickbox, Bouncer, a DIY SMTP check and Strale compared: credit packs versus one metered per-call endpoint.",[2406,2329,1998,2407],"email verification api","email","\u002Fimg\u002Fblog\u002Fbest-email-verification-api-2026.png","\u002Fimg\u002Fblog\u002Fbest-email-verification-api-2026-card.png",{"path":2411,"title":2412,"description":21,"publishedAt":2413,"author":1101,"category":1122,"tags":2414,"readTime":1101,"cover":2417,"listingCover":1101,"image":1101},"\u002Fblog\u002Fakta-pro-is-now-available-on-monid","Akta Pro Is Now Available On Monid","2026-07-07",[1998,2415,2416,2329],"partner-tools","private-markets","\u002Fimg\u002Fblog\u002Fakta-pro-is-now-available-on-monid-v2.png",{"path":2419,"title":2420,"description":2421,"publishedAt":2422,"author":1101,"category":1122,"tags":2423,"readTime":1101,"cover":2426,"listingCover":1101,"image":1101},"\u002Fblog\u002Fyour-claude-code-can-now-make-phone-calls","Your Claude Code can now make phone calls","Saperly is now available on Monid. Your agent can now make phone calls for you.","2026-07-05",[1998,2415,2424,2425],"voice","phone","\u002Fimg\u002Fblog\u002Fyour-claude-code-can-now-make-phone-calls.png",{"path":2428,"title":2429,"description":2430,"publishedAt":2431,"author":1101,"category":1122,"tags":2432,"readTime":1101,"cover":2435,"listingCover":1101,"image":1101},"\u002Fblog\u002Fintroducing-suzanne-chatgpt-for-3d-models","Introducing\nClaude for 3D models","Suzanne is now available on Monid. Turn any idea into a production-ready 3D model in one prompt.","2026-06-25",[2433,1998,2434],"3d","creative-tools","\u002Fimg\u002Fblog\u002Fintroducing-suzanne-chatgpt-for-3d-models.png",{"path":2437,"title":2438,"description":2439,"publishedAt":2440,"author":1101,"category":1122,"tags":2441,"readTime":1101,"cover":2444,"listingCover":1101,"image":1101},"\u002Fblog\u002Fminimax-is-now-available-on-monid","MiniMax is now available on Monid","Create images and music with MiniMax models through Monid.","2026-06-24",[1998,2434,2442,2443],"image-generation","music-generation","\u002Fimg\u002Fblog\u002Fminimax-is-now-available-on-monid.png",1789774984041]