kcharvi / firecrawl-with-ai-agents

0 stars 0 forks source link

[Bug] No Data is Returned After Crawling (formats-JSON) #85

Open kcharvi opened 3 weeks ago

kcharvi commented 3 weeks ago

Describe the Bug I am using sync and async crawling in my code. on 06-03-2025 : everything was just working fine . Crawling result were properly coming. But from 07-03-2025- No data is populating using same method. Crawl status is showing completed but returns empty array and no error is showing. Just empty result returns

To Reproduce Code : async : firecrawl_client = FirecrawlApp(api_key=firecrawl_api_key) result = firecrawl_client.async_crawl_url(url, { 'scrapeOptions': { 'formats': ["json"], 'jsonOptions': { "prompt": firecrawl_prompt }, 'onlyMainContent': True }, 'maxDepth': 1, 'limit': 100, 'ignoreSitemap': True, }) crawl_status = firecrawl_client.check_crawl_status(result['id'])

Output : {'completed': 0, 'creditsUsed': 0, 'data': [], 'expiresAt': '2025-03-08T17:57:49.000Z', 'status': 'completed', 'success': True, 'total': 0}

 sync : 

app = FirecrawlApp(api_key=self.firecrawl_api_key) result = app.crawl_url(url, { 'scrapeOptions': { 'formats': ["json"], 'jsonOptions': { "prompt": firecrawl_prompt }, 'onlyMainContent': True }, 'maxDepth': 1, 'limit': 50, 'ignoreSitemap': True, })

Expected Behavior It should returns details after crawling

Screenshots If applicable, add screenshots or copies of the command line output to help explain the issue.

Environment (please complete the following information):


Originally from mendableai/firecrawl #1309 by @priyaadak254 on 2025-03-07T17:37:07+00:00

kcharvi commented 3 weeks ago

pythongiant commented on 2025-03-08T03:58:23+00:00 (Original):

I'm getting this as well on python with (/extract).

kcharvi commented 3 weeks ago

SHIXOOM commented on 2025-03-09T10:11:38+00:00 (Original):

I am getting similar problem with crawl function, but the error is not consistent.

kcharvi commented 3 weeks ago

priyaadak254 commented on 2025-03-11T11:19:02+00:00 (Original):

Any update about this issue ?

kcharvi commented 3 weeks ago

priyaadak254 commented on 2025-03-13T16:29:04+00:00 (Original):

What is the update? Our works is hampered due to this. Our client is very much dependent on this functionality. Please let me know the progress

kcharvi commented 3 weeks ago

ftonato commented on 2025-03-13T16:46:28+00:00 (Original):

Hello everyone,

I’m still in the process of debugging and investigating the issue. As soon as I reach a conclusion, I’ll share my findings with everyone here. Apologies for the delay, and I appreciate your patience.

kcharvi commented 3 weeks ago

priyaadak254 commented on 2025-03-18T18:11:20+00:00 (Original):

Any update ? it's almost 2 weeks I raise this issue.

My client is very very disappoint on your product.

kcharvi commented 3 weeks ago

ftonato commented on 2025-03-19T13:21:47+00:00 (Original):

Hello ,

I’ve tried with a couple of different URLs and prompts, but I couldn’t reproduce the issue. If you don’t mind, could you share the prompt and URL you used with me?

kcharvi commented 3 weeks ago

ftonato commented on 2025-03-19T14:03:46+00:00 (Original):

Let me share the latest test I ran:

Request params

{
  "url": "https://firecrawl.dev",
  "scrapeOptions": {
    "formats": ["json"],
    "jsonOptions": {
      "prompt": "Please extract the following information from the page: \n- Plans names \n- Prices for each plan\nFormat the information in a clear, structured way."
    },
    "onlyMainContent": true
  },
  "maxDepth": 1,
  "limit": 100,
  "ignoreSitemap": true
}

Response

{
  "success": true,
  "status": "completed",
  "completed": 11,
  "total": 11,
  "creditsUsed": 11,
  "expiresAt": "2025-03-20T13:59:05.000Z",
  "data": [
    {
      "metadata": {
        "title": "Firecrawl",
        "description": "Turn any website into LLM-ready data.",
        "favicon": "https://firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "ff6d09c5-89e5-43ae-9cfa-ca8d20b7f93f",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://firecrawl.dev/",
        "url": "https://www.firecrawl.dev/",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Free Plan",
            "price": {
              "one_time": "$0",
              "monthly": null,
              "yearly": null
            },
            "details": {
              "credits": "500 credits",
              "features": [
                "Scrape 500 pages",
                "2 concurrent browsers",
                "Low Rate Limits"
              ]
            }
          },
          {
            "name": "Hobby",
            "price": {
              "one_time": null,
              "monthly": "$16",
              "yearly": "$190"
            },
            "details": {
              "credits": "3,000 credits per month",
              "features": [
                "Scrape 3,000 pages",
                "5 concurrent browsers",
                "1 seat"
              ]
            }
          },
          {
            "name": "Standard",
            "price": {
              "one_time": null,
              "monthly": "$83",
              "yearly": "$990"
            },
            "details": {
              "credits": "100,000 credits per month",
              "features": [
                "Scrape 100,000 pages",
                "50 concurrent browsers",
                "3 seats",
                "Standard Support"
              ]
            }
          },
          {
            "name": "Growth",
            "price": {
              "one_time": null,
              "monthly": "$333",
              "yearly": "$3990"
            },
            "details": {
              "credits": "500,000 credits per month",
              "features": [
                "Scrape 500,000 pages",
                "100 concurrent browsers",
                "5 seats",
                "Priority Support"
              ]
            }
          },
          {
            "name": "Enterprise Plan",
            "price": {
              "one_time": null,
              "monthly": null,
              "yearly": null
            },
            "details": {
              "credits": "Unlimited credits",
              "features": [
                "Custom RPMs",
                "Bulk discounts",
                "Top priority support",
                "Custom concurrency limits",
                "Improved Stealth Proxies",
                "SLAs",
                "Advanced Security & Controls"
              ]
            }
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Affiliate Program | Firecrawl",
        "description": "Affiliate Program for Firecrawl",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "a51bbd3d-0a19-4583-91a2-7954eddc1a05",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/affiliate-program",
        "url": "https://www.firecrawl.dev/affiliate-program",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Standard Plan",
            "price": "$20/month"
          },
          {
            "name": "Premium Plan",
            "price": "$30/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Terms of Service | Firecrawl",
        "description": "Terms of Service for Firecrawl",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "2aaf7979-5fc9-4920-8ed9-9f4b43bd86e3",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/terms-of-service",
        "url": "https://www.firecrawl.dev/terms-of-service",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Standard Plan",
            "price": "$20/month"
          },
          {
            "name": "Premium Plan",
            "price": "$30/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Playground - Firecrawl",
        "description": "Preview the API response and get the code snippets for the API",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "9748fb13-2cfe-4562-89ff-f6ea34a169c5",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/playground",
        "url": "https://www.firecrawl.dev/playground",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Standard Plan",
            "price": "$20/month"
          },
          {
            "name": "Premium Plan",
            "price": "$30/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Privacy Policy | Firecrawl",
        "description": "Privacy Policy for Firecrawl",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "417a7c39-9eee-43a3-a3e5-df53d1d98411",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/privacy-policy",
        "url": "https://www.firecrawl.dev/privacy-policy",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Standard Plan",
            "price": "$20/month"
          },
          {
            "name": "Premium Plan",
            "price": "$30/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Firecrawl",
        "description": "Turn any website into LLM-ready data.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "e75517f7-82c6-4014-9c04-be317df61633",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/signin",
        "url": "https://www.firecrawl.dev/signin/password_signin",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Pro Plan",
            "price": "$20/month"
          },
          {
            "name": "Enterprise Plan",
            "price": "$50/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Blog",
        "description": "Tutorials and updates on Firecrawl.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "efed9746-6e94-4237-841c-751ad3fb5c15",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/blog",
        "url": "https://www.firecrawl.dev/blog",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$19/month"
          },
          {
            "name": "Pro Plan",
            "price": "$49/month"
          },
          {
            "name": "Enterprise Plan",
            "price": "$99/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Changelog",
        "description": "Latest updates and improvements to Firecrawl.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "464251db-3b45-4321-a31a-f20d76f7b069",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/changelog",
        "url": "https://www.firecrawl.dev/changelog",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Basic Plan",
            "price": "$10/month"
          },
          {
            "name": "Pro Plan",
            "price": "$30/month"
          },
          {
            "name": "Enterprise Plan",
            "price": "$100/month"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Extract - Firecrawl",
        "description": "Get structured data from entire websites with just a prompt.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "AI web scraper,Extract,Firecrawl,LLM,Data,Website,Prompt",
        "robots": "follow, index",
        "ogTitle": "Extract - Firecrawl",
        "ogDescription": "Get structured data from entire websites with just a prompt.",
        "ogImage": "https://www.firecrawl.dev/og-extract.png",
        "ogLocaleAlternate": [],
        "scrapeId": "27663708-b9b2-470e-bc99-054bcdf6a160",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Extract - Firecrawl",
        "og:description": "Get structured data from entire websites with just a prompt.",
        "og:image": "https://www.firecrawl.dev/og-extract.png",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:title": "Extract - Firecrawl",
        "twitter:description": "Get structured data from entire websites with just a prompt.",
        "twitter:image": "https://www.firecrawl.dev/og-extract.png",
        "sourceURL": "https://www.firecrawl.dev/extract",
        "url": "https://www.firecrawl.dev/extract",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Free",
            "price": "$0",
            "billing_cycle": "One-time",
            "tokens_per_year": "500,000",
            "rate_limit": "10 per min",
            "support": "Community"
          },
          {
            "name": "Starter",
            "price": "$89/mo",
            "annual_price": "$1,188/yr",
            "discounted_annual_price": "$1,068/yr (Billed annually)",
            "tokens_per_year": "18 million",
            "rate_limit": "100 per min",
            "support": "Email"
          },
          {
            "name": "Explorer",
            "price": "$359/mo",
            "annual_price": "$4,788/yr",
            "discounted_annual_price": "$4,308/yr (Billed annually)",
            "tokens_per_year": "84 million",
            "rate_limit": "500 per min",
            "support": "Slack"
          },
          {
            "name": "Pro",
            "price": "$719/mo",
            "annual_price": "$9,588/yr",
            "discounted_annual_price": "$8,628/yr (Billed annually)",
            "tokens_per_year": "192 million",
            "rate_limit": "1000 per min",
            "support": "Slack + Priority"
          },
          {
            "name": "Enterprise",
            "price": "Custom",
            "billing_cycle": "Billed annually",
            "tokens_per_year": "No limits",
            "rate_limit": "Custom",
            "support": "Custom (SLA, dedicated engineer)"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Deep Research - Firecrawl",
        "description": "Analyze and extract insights from large amounts of web data.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Deep Research,Firecrawl,Web Analysis,Data Analysis,Research,AI Research",
        "robots": "follow, index",
        "ogTitle": "Deep Research - Firecrawl",
        "ogDescription": "Analyze and extract insights from large amounts of web data.",
        "ogImage": "https://www.firecrawl.dev/og.png",
        "ogLocaleAlternate": [],
        "scrapeId": "3eb95ee3-0774-4353-95ca-5de95254fc8c",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Deep Research - Firecrawl",
        "og:description": "Analyze and extract insights from large amounts of web data.",
        "og:image": "https://www.firecrawl.dev/og.png",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:title": "Deep Research - Firecrawl",
        "twitter:description": "Analyze and extract insights from large amounts of web data.",
        "twitter:image": "https://www.firecrawl.dev/og.png",
        "sourceURL": "https://www.firecrawl.dev/deep-research",
        "url": "https://www.firecrawl.dev/deep-research",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Alpha Waitlist",
            "price": "Free"
          },
          {
            "name": "Deep Research API",
            "price": "Contact for pricing"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Firecrawl",
        "description": "Turn any website into LLM-ready data.",
        "favicon": "https://www.firecrawl.dev/favicon.ico",
        "language": "en",
        "keywords": "Firecrawl,Markdown,Data,Mendable,Langchain",
        "robots": "follow, index",
        "ogTitle": "Firecrawl",
        "ogDescription": "Turn any website into LLM-ready data.",
        "ogUrl": "https://www.firecrawl.dev/",
        "ogImage": "https://www.firecrawl.dev/og.png?123",
        "ogLocaleAlternate": [],
        "ogSiteName": "Firecrawl",
        "scrapeId": "48325d92-d1da-4fa3-b9ea-8c26d11c74da",
        "viewport": "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no",
        "author": "Firecrawl",
        "referrer": "origin-when-cross-origin",
        "creator": "Firecrawl",
        "publisher": "Firecrawl",
        "og:title": "Firecrawl",
        "og:description": "Turn any website into LLM-ready data.",
        "og:url": "https://www.firecrawl.dev/",
        "og:site_name": "Firecrawl",
        "og:image": "https://www.firecrawl.dev/og.png?123",
        "og:type": "website",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:creator": "",
        "twitter:title": "Firecrawl",
        "twitter:description": "Turn any website into LLM-ready data.",
        "twitter:image": "https://www.firecrawl.dev/og.png?123",
        "sourceURL": "https://www.firecrawl.dev/pricing",
        "url": "https://www.firecrawl.dev/pricing",
        "statusCode": 200
      },
      "json": {
        "plans": [
          {
            "name": "Free Plan",
            "price": {
              "one_time": "$0"
            },
            "credits": "500 credits",
            "features": [
              "Scrape 500 pages",
              "2 concurrent browsers",
              "Low Rate Limits"
            ]
          },
          {
            "name": "Hobby",
            "price": {
              "monthly": "$16/month",
              "yearly": {
                "standard": "$228/yr",
                "discounted": "$190/yr"
              }
            },
            "credits": "3,000 credits per month",
            "features": [
              "Scrape 3,000 pages",
              "5 concurrent browsers",
              "1 seat"
            ]
          },
          {
            "name": "Standard",
            "price": {
              "monthly": "$83/month",
              "yearly": {
                "standard": "$1188/yr",
                "discounted": "$990/yr"
              }
            },
            "credits": "100,000 credits per month",
            "features": [
              "Scrape 100,000 pages",
              "50 concurrent browsers",
              "3 seats",
              "Standard Support"
            ]
          },
          {
            "name": "Growth",
            "price": {
              "monthly": "$333/month",
              "yearly": {
                "standard": "$4788/yr",
                "discounted": "$3990/yr"
              }
            },
            "credits": "500,000 credits per month",
            "features": [
              "Scrape 500,000 pages",
              "100 concurrent browsers",
              "5 seats",
              "Priority Support"
            ]
          },
          {
            "name": "Enterprise Plan",
            "price": {
              "custom": "Talk to us"
            },
            "credits": "Unlimited credits",
            "features": [
              "Bulk discounts",
              "Top priority support",
              "Custom concurrency limits",
              "Improved Stealth Proxies",
              "SLAs",
              "Advanced Security & Controls"
            ]
          }
        ]
      }
    }
  ]
} 
kcharvi commented 3 weeks ago

ftonato commented on 2025-03-19T14:49:59+00:00 (Original):

[!IMPORTANT]
This is another test I just performed—take a look at the results; they are correct. It’s possible that the issue you’re encountering is related to the prompt itself.

Request params

{
  "url": "https://techcrunch.com/",
  "scrapeOptions": {
    "formats": ["json"],
    "jsonOptions": {
      "prompt": "Please extract the latest news"
    },
    "onlyMainContent": true
  },
  "maxDepth": 2,
  "limit": 15,
  "ignoreSitemap": true
}

Response

{
  "success": true,
  "status": "completed",
  "completed": 15,
  "total": 15,
  "creditsUsed": 15,
  "expiresAt": "2025-03-20T14:48:55.000Z",
  "data": [
    {
      "metadata": {
        "title": "TechCrunch | Startup and Technology News",
        "description": "TechCrunch | Reporting on the business of technology, startups, venture capital funding, and Silicon Valley",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "TechCrunch | Startup and Technology News",
        "ogDescription": "TechCrunch | Reporting on the business of technology, startups, venture capital funding, and Silicon Valley",
        "ogUrl": "https://techcrunch.com/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "cf23df04-fe40-403b-a4fe-cb34f5fc2ada",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "website",
        "og:title": "TechCrunch | Startup and Technology News",
        "og:description": "TechCrunch | Reporting on the business of technology, startups, venture capital funding, and Silicon Valley",
        "og:url": "https://techcrunch.com/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Home",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/",
        "url": "https://techcrunch.com/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "Google unveils redesigned $499 Pixel 9a",
            "url": "https://techcrunch.com/2025/03/19/google-unveils-redesigned-499-pixel-9a/",
            "author": {
              "name": "Aisha Malik",
              "url": "https://techcrunch.com/author/aisha-malik/"
            },
            "time_ago": "8 minutes ago",
            "category": "Hardware",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/pixel-9a.png"
          },
          {
            "title": "Zoox recalls 258 self-driving cars over unexpected braking",
            "url": "https://techcrunch.com/2025/03/19/zoox-recalls-258-self-driving-cars-over-unexpected-braking/",
            "author": {
              "name": "Rebecca Bellan",
              "url": "https://techcrunch.com/author/rebecca-bellan/"
            },
            "time_ago": "20 minutes ago",
            "category": "Transportation",
            "image": "https://techcrunch.com/wp-content/uploads/2021/10/Zoox_Seattle2.jpg"
          },
          {
            "title": "Cape opens $99/month beta of its privacy-first mobile plan, inks Proton deal, raises $30M",
            "url": "https://techcrunch.com/2025/03/19/cape-opens-99-month-beta-of-its-privacy-first-mobile-plan-inks-proton-deal-raises-30m/",
            "author": {
              "name": "Ingrid Lunden",
              "url": "https://techcrunch.com/author/ingrid-lunden/"
            },
            "time_ago": "36 minutes ago",
            "category": "Privacy",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Cape-co-founders.jpg"
          },
          {
            "title": "Let your voice be heard! Vote for who you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/19/let-your-voice-be-heard-vote-for-who-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": {
              "name": "TechCrunch Events",
              "url": "https://techcrunch.com/author/techcrunch-events/"
            },
            "time_ago": "47 minutes ago",
            "category": "TC Sessions: AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TechCrunch-Sessions-AI-Audience-Choice-Finalists.png"
          },
          {
            "title": "Google now lets kids use Google Wallet for in-store payments in select countries",
            "url": "https://techcrunch.com/2025/03/19/google-now-lets-kids-use-google-wallet-for-in-store-payments-in-select-countries/",
            "author": {
              "name": "Aisha Malik",
              "url": "https://techcrunch.com/author/aisha-malik/"
            },
            "time_ago": "47 minutes ago",
            "category": "Apps",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/google-wallet.jpg"
          },
          {
            "title": "Agentic AI startup AMT aims to be ‘Google Adwords for influencers,’ raises seed round",
            "url": "https://techcrunch.com/2025/03/19/agentic-ai-startup-amt-aims-to-be-google-adwords-for-influencers-raises-seed-round/",
            "author": {
              "name": "Mike Butcher",
              "url": "https://techcrunch.com/author/mike-butcher/"
            },
            "time_ago": "2 hours ago",
            "category": "Fundraising",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Tom-Hollands-and-Christian-Johnston-cofounders-of-AMT.jpeg"
          },
          {
            "title": "Researchers name several countries as potential Paragon spyware customers",
            "url": "https://techcrunch.com/2025/03/19/researchers-name-several-countries-as-potential-paragon-spyware-customers/",
            "author": {
              "name": "Lorenzo Franceschi-Bicchierai",
              "url": "https://techcrunch.com/author/lorenzo-franceschi-bicchierai/"
            },
            "time_ago": "3 hours ago",
            "category": "Security",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/android-spyware-green.jpg"
          },
          {
            "title": "Shopify transfers its US listing from the NYSE to the Nasdaq",
            "url": "https://techcrunch.com/2025/03/19/shopify-transfers-its-us-listing-from-the-nyse-to-the-nasdaq/",
            "author": {
              "name": "Paul Sawers",
              "url": "https://techcrunch.com/author/paul-sawers/"
            },
            "time_ago": "3 hours ago",
            "category": "Commerce",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/ShopifyIPO-e1683204310695.jpg"
          },
          {
            "title": "Academics accuse AI startups of co-opting peer review for publicity",
            "url": "https://techcrunch.com/2025/03/19/academics-accuse-ai-startups-of-co-opting-peer-review-for-publicity/",
            "author": {
              "name": "Kyle Wiggers",
              "url": "https://techcrunch.com/author/kyle-wiggers/"
            },
            "time_ago": "3 hours ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2021/03/GettyImages-875579516.jpg"
          },
          {
            "title": "Prezent raises $20M to build AI for slide decks",
            "url": "https://techcrunch.com/2025/03/19/prezent-raises-20m-to-build-ai-for-slide-decks/",
            "author": {
              "name": "Jagmeet Singh",
              "url": "https://techcrunch.com/author/jagmeet-singh/"
            },
            "time_ago": "4 hours ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/presentation-getty.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Podcast Episodes Archive | TechCrunch",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Podcast Episodes Archive",
        "ogUrl": "https://techcrunch.com/podcast/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "8c8809c5-68cf-41e9-96bd-49d8579fc893",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "website",
        "og:title": "Podcast Episodes Archive",
        "og:url": "https://techcrunch.com/podcast/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "og:image:width": "1200",
        "og:image:height": "486",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Podcast",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/podcasts/",
        "url": "https://techcrunch.com/podcasts/",
        "statusCode": 200
      },
      "json": {
        "podcasts": [
          {
            "title": "Equity",
            "description": "Equity is TechCrunch’s flagship podcast about the business of startups, unpacked by the writers who know best.",
            "host": "Theresa Loconsolo",
            "editor": "Kell",
            "episodes": 971,
            "last_updated": "2025-03-14",
            "url": "https://techcrunch.com/podcasts/equity/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/10/Equity-2024-2.jpg"
          },
          {
            "title": "StrictlyVC Download",
            "description": "Each week, StrictlyVC’s host and TechCrunch Editor-in-Chief Connie Loizos, with Alex Gove, former journalist, VC and operating exec, review the top stories in StrictlyVC and interview a mover and shaker in the world of tech.",
            "host": "Connie Loizos",
            "co_host": "Alex Gove",
            "episodes": 20,
            "last_updated": "2025-03-18",
            "url": "https://techcrunch.com/podcasts/strictlyvc-download/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/10/strictlyvc-download-podcast-art.png"
          },
          {
            "title": "Found",
            "description": "Each week, we feature early-stage startup founders to hear first-hand accounts of the real stories behind startups.",
            "host": "Maggie Stamets",
            "editor": "Kell",
            "episodes": 183,
            "last_updated": "2024-12-10",
            "url": "https://techcrunch.com/podcasts/found/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/10/Found-2024-1.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Newsletters Archive | TechCrunch",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Newsletters Archive",
        "ogUrl": "https://techcrunch.com/newsletters/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "49ae3f2a-e658-426e-aa2b-12ff5e732b3f",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "website",
        "og:title": "Newsletters Archive",
        "og:url": "https://techcrunch.com/newsletters/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "og:image:width": "1200",
        "og:image:height": "486",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Newsletter",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/newsletters/",
        "url": "https://techcrunch.com/newsletters/",
        "statusCode": 200
      },
      "json": {
        "newsletters": [
          {
            "title": "TechCrunch Daily News",
            "description": "Every weekday and Sunday, you can get the best of TechCrunch’s coverage.",
            "link": "https://techcrunch.com/newsletters/techcrunch-daily-news/"
          },
          {
            "title": "Startups Weekly",
            "description": "Startups are the core of TechCrunch, so get our best coverage delivered weekly.",
            "link": "https://techcrunch.com/newsletters/startups-weekly/"
          },
          {
            "title": "TechCrunch Mobility",
            "description": "TechCrunch Mobility is your destination for transportation news and insight.",
            "link": "https://techcrunch.com/newsletters/techcrunch-mobility/"
          },
          {
            "title": "TechCrunch Week in Review",
            "description": "Get the best of our coverage, delivered to your inbox every Saturday.",
            "link": "https://techcrunch.com/newsletters/techcrunch-week-in-review/"
          },
          {
            "title": "Event Updates",
            "description": "Get the latest event announcements, special discounts and other event offers.",
            "link": "https://techcrunch.com/newsletters/event-updates/"
          },
          {
            "title": "Advertising & Partnerships",
            "description": "Learn more about TechCrunch partnerships online and IRL",
            "link": "https://techcrunch.com/newsletters/advertising-partnerships/"
          },
          {
            "title": "StrictlyVC",
            "description": "Provides VCs, entrepreneurs, corp dev types, and other movers and shakers with the info they need to start their day.",
            "link": "https://strictlyvc.com/"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Apps | Read the latest app news on TechCrunch",
        "description": "As the app economy continues to grow, both on iOS and Google Play stores, TechCrunch covers the latest app news and updates across both digital storefronts.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Apps | Read the latest app news on TechCrunch",
        "ogDescription": "As the app economy continues to grow, both on iOS and Google Play stores, TechCrunch covers the latest app news and updates across both digital storefronts.",
        "ogUrl": "https://techcrunch.com/category/apps/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "29b5adaf-0bcb-4ffe-9c07-3a97dabfe9b1",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Apps | Read the latest app news on TechCrunch",
        "og:description": "As the app economy continues to grow, both on iOS and Google Play stores, TechCrunch covers the latest app news and updates across both digital storefronts.",
        "og:url": "https://techcrunch.com/category/apps/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/apps/",
        "url": "https://techcrunch.com/category/apps/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "Cape opens $99/month beta of its privacy-first mobile plan, inks Proton deal, raises $30M",
            "author": {
              "name": "Ingrid Lunden",
              "url": "https://techcrunch.com/author/ingrid-lunden/"
            },
            "time_ago": "3 minutes ago",
            "category": "Privacy",
            "url": "https://techcrunch.com/2025/03/19/cape-opens-99-month-beta-of-its-privacy-first-mobile-plan-inks-proton-deal-raises-30m/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Cape-co-founders.jpg"
          },
          {
            "title": "Google now lets kids use Google Wallet for in-store payments in select countries",
            "author": {
              "name": "Aisha Malik",
              "url": "https://techcrunch.com/author/aisha-malik/"
            },
            "time_ago": "14 minutes ago",
            "category": "Apps",
            "url": "https://techcrunch.com/2025/03/19/google-now-lets-kids-use-google-wallet-for-in-store-payments-in-select-countries/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/google-wallet.jpg"
          },
          {
            "title": "Google brings a ‘canvas’ feature to Gemini, plus Audio Overview",
            "author": {
              "name": "Kyle Wiggers",
              "url": "https://techcrunch.com/author/kyle-wiggers/"
            },
            "time_ago": "22 hours ago",
            "category": "AI",
            "url": "https://techcrunch.com/2025/03/18/google-brings-a-canvas-feature-to-gemini-plus-audio-overview/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2169339854.jpg"
          },
          {
            "title": "Google launches new healthcare-related features for Search, Android",
            "author": {
              "name": "Ivan Mehta",
              "url": "https://techcrunch.com/author/ivan-mehta/"
            },
            "time_ago": "1 day ago",
            "category": "AI",
            "url": "https://techcrunch.com/2025/03/18/google-adds-new-healthcare-related-features-in-search/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1207206244.jpg"
          },
          {
            "title": "WhatsApp will soon limit number of broadcast messages users and businesses can send",
            "author": {
              "name": "Ivan Mehta",
              "url": "https://techcrunch.com/author/ivan-mehta/"
            },
            "time_ago": "1 day ago",
            "category": "Apps",
            "url": "https://techcrunch.com/2025/03/18/whatsapp-will-soon-limit-number-of-broadcast-messages-users-and-businesses-can-send/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/WhatsApp-Business-new-logo.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Security News | TechCrunch",
        "description": "Read the latest news and investigative reporting on security today, including cybersecurity, breaches, hacks and cyberattacks around the globe.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Security News | TechCrunch",
        "ogDescription": "Read the latest news and investigative reporting on security today, including cybersecurity, breaches, hacks and cyberattacks around the globe.",
        "ogUrl": "https://techcrunch.com/category/security/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "265c48c0-5307-4f85-8ff0-967cdce42149",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Security News | TechCrunch",
        "og:description": "Read the latest news and investigative reporting on security today, including cybersecurity, breaches, hacks and cyberattacks around the globe.",
        "og:url": "https://techcrunch.com/category/security/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/security/",
        "url": "https://techcrunch.com/category/security/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "Cape opens $99/month beta of its privacy-first mobile plan, inks Proton deal, raises $30M",
            "author": "Ingrid Lunden",
            "timestamp": "32 minutes ago",
            "category": "Privacy",
            "url": "https://techcrunch.com/2025/03/19/cape-opens-99-month-beta-of-its-privacy-first-mobile-plan-inks-proton-deal-raises-30m/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Cape-co-founders.jpg"
          },
          {
            "title": "Researchers name several countries as potential Paragon spyware customers",
            "author": "Lorenzo Franceschi-Bicchierai",
            "timestamp": "3 hours ago",
            "category": "Security",
            "url": "https://techcrunch.com/2025/03/19/researchers-name-several-countries-as-potential-paragon-spyware-customers/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/android-spyware-green.jpg"
          },
          {
            "title": "CISA scrambles to contact fired employees after court rules layoffs ‘unlawful’",
            "author": "Carly Page",
            "timestamp": "23 hours ago",
            "category": "Security",
            "url": "https://techcrunch.com/2025/03/18/cisa-scrambles-to-contact-fired-employees-after-court-rules-layoffs-unlawful/",
            "image": "https://techcrunch.com/wp-content/uploads/2022/02/GettyImages-643845388.jpg"
          },
          {
            "title": "Confirmed: Google buys Wiz for $32B to beef up in cloud security",
            "author": "Ingrid Lunden",
            "timestamp": "1 day ago",
            "category": "Security",
            "url": "https://techcrunch.com/2025/03/18/google-is-buying-wiz-for-32b-to-beef-up-in-cloud-security/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/10/Assaf-Rappaport-Wiz.jpg"
          },
          {
            "title": "Google revives talks to acquire Wiz at higher valuation",
            "author": "Marina Temkin, Ingrid Lunden",
            "timestamp": "2 days ago",
            "category": "Enterprise",
            "url": "https://techcrunch.com/2025/03/17/google-revives-talks-to-acquire-wiz-at-higher-valuation/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/05/Wiz-Founders.-Credit-Avishag-Shaar-Yashuv-e1729698030129.webp"
          },
          {
            "title": "Texas man faces prison for activating ‘kill switch’ on former employer’s network",
            "author": "Zack Whittaker",
            "timestamp": "2 days ago",
            "category": "In Brief",
            "url": "https://techcrunch.com/2025/03/17/texas-man-faces-prison-for-activating-kill-switch-on-former-employers-network/",
            "image": "https://techcrunch.com/wp-content/uploads/2023/12/cyber-criminals-indicted.jpg"
          },
          {
            "title": "Hackers are exploiting Fortinet firewall bugs to plant ransomware",
            "author": "Carly Page",
            "timestamp": "2 days ago",
            "category": "Security",
            "url": "https://techcrunch.com/2025/03/17/hackers-are-exploiting-fortinet-firewall-bugs-to-plant-ransomware/",
            "image": "https://techcrunch.com/wp-content/uploads/2022/02/scanning-computer-group.jpg"
          },
          {
            "title": "DOGE staffer violated Treasury rules by emailing unencrypted personal data",
            "author": "Zack Whittaker",
            "timestamp": "2 days ago",
            "category": "Security",
            "url": "https://techcrunch.com/2025/03/17/doge-staffer-violated-treasury-rules-by-emailing-unencrypted-personal-data/",
            "image": "https://techcrunch.com/wp-content/uploads/2019/08/GettyImages-477538536.jpg"
          },
          {
            "title": "UK’s internet watchdog puts storage and file-sharing services on watch over CSAM",
            "author": "Natasha Lomas",
            "timestamp": "2 days ago",
            "category": "In Brief",
            "url": "https://techcrunch.com/2025/03/17/uks-internet-watchdog-puts-storage-and-file-sharing-services-on-watch-over-csam/",
            "image": "https://techcrunch.com/wp-content/uploads/2023/08/hacker-dark-keyboard.jpg"
          },
          {
            "title": "European tech industry coalition calls for ‘radical action’ on digital sovereignty — starting with buying local",
            "author": "Natasha Lomas",
            "timestamp": "2 days ago",
            "category": "Government & Policy",
            "url": "https://techcrunch.com/2025/03/16/european-tech-industry-coalition-calls-for-radical-action-on-digital-sovereignty-starting-with-buying-local/",
            "image": "https://techcrunch.com/wp-content/uploads/2023/06/GettyImages-497829044.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Climate News | TechCrunch",
        "description": "Read the latest news on climate, including coverage of the latest startups and investments in climate change, solar energy, Greentech, food tech and more.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Climate News | TechCrunch",
        "ogDescription": "Read the latest news on climate, including coverage of the latest startups and investments in climate change, solar energy, Greentech, food tech and more.",
        "ogUrl": "https://techcrunch.com/category/climate/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "85c74d43-cbb1-4705-a691-46c05db2b829",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Climate News | TechCrunch",
        "og:description": "Read the latest news on climate, including coverage of the latest startups and investments in climate change, solar energy, Greentech, food tech and more.",
        "og:url": "https://techcrunch.com/category/climate/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/climate/",
        "url": "https://techcrunch.com/category/climate/",
        "statusCode": 200
      },
      "json": {
        "news": [
          {
            "title": "Al Gore’s Just Climate fund raises $175M from Microsoft and CalSTRS for nature-based climate investments",
            "author": "Tim De Chant",
            "date": "2025-03-18",
            "url": "https://techcrunch.com/2025/03/18/al-gores-just-climate-fund-raises-175m-from-microsoft-and-calstrs-for-nature-based-climate-investments/",
            "image": "https://techcrunch.com/wp-content/uploads/2022/06/Big-Lonely-Doug.jpg"
          },
          {
            "title": "Coreshell has a plan to slash the price of American-made batteries",
            "author": "Tim De Chant",
            "date": "2025-03-17",
            "url": "https://techcrunch.com/2025/03/18/coreshell-has-a-plan-to-slash-the-price-of-american-made-batteries/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/coreshell-founders.jpeg"
          },
          {
            "title": "A Google-backed weapon to battle wildfires made it into orbit",
            "author": "Tim De Chant",
            "date": "2025-03-17",
            "url": "https://techcrunch.com/2025/03/17/a-google-backed-weapon-to-battle-wildfires-made-it-into-orbit/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/camp-fire-landsat-8-satellite-image.jpeg"
          },
          {
            "title": "Palmetto wants software developers to electrify America using its AI building models",
            "author": "Tim De Chant",
            "date": "2025-03-17",
            "url": "https://techcrunch.com/2025/03/17/palmetto-wants-software-developers-to-electrify-america-using-its-ai-building-models/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/05/suburban-housing-aerial-view.jpg"
          },
          {
            "title": "Arizona proposes law that would shift wildfire liability from utilities to insurers",
            "author": "Tim De Chant",
            "date": "2025-03-14",
            "url": "https://techcrunch.com/2025/03/14/arizona-proposes-law-that-would-shift-wildfire-liability-from-utilities-to-insurers/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/AZ-wildfire-GettyImages.jpg"
          },
          {
            "title": "FBI, EPA, and Treasury told Citibank to freeze funds as Trump administration tries to claw back climate money",
            "author": "Tim De Chant",
            "date": "2025-03-13",
            "url": "https://techcrunch.com/2025/03/13/fbi-epa-and-treasury-told-citibank-to-freeze-funds-as-trump-administration-tries-to-claw-back-climate-money/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1497343848.jpeg"
          },
          {
            "title": "Geothermal unicorn Fervo Energy may IPO as early as next year",
            "author": "Tim De Chant",
            "date": "2025-03-13",
            "url": "https://techcrunch.com/2025/03/13/geothermal-unicorn-fervo-energy-may-ipo-as-early-as-next-year/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Tim-Latimer-at-Fervo-Operations-Site.jpg"
          },
          {
            "title": "Lithium-ion batteries are remaking Google’s data centers",
            "author": "Tim De Chant",
            "date": "2025-03-12",
            "url": "https://techcrunch.com/2025/03/12/lithium-ion-batteries-are-remaking-googles-data-centers/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/GettyImages-1709348485.jpg"
          },
          {
            "title": "Geothermal could power nearly all new data centers through 2030",
            "author": "Tim De Chant",
            "date": "2025-03-11",
            "url": "https://techcrunch.com/2025/03/11/geothermal-could-power-nearly-all-new-data-centers-through-2030/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/05/GettyImages-1452392871.jpeg"
          },
          {
            "title": "General Fusion fires up its newest steampunk fusion reactor",
            "author": "Tim De Chant",
            "date": "2025-03-11",
            "url": "https://techcrunch.com/2025/03/11/general-fusion-fires-up-its-newest-steampunk-fusion-reactor/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/General-Fusion-LM26.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Amazon news and analysis | TechCrunch",
        "description": "Read the latest news and analysis about Amazon on TechCrunch.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Amazon news and analysis | TechCrunch",
        "ogDescription": "Read the latest news and analysis about Amazon on TechCrunch.",
        "ogUrl": "https://techcrunch.com/tag/amazon/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2022/09/amazon-logo.jpg?resize=1200,653",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "3d310f02-ceb7-42c0-8b70-4585d541d6d7",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Amazon news and analysis | TechCrunch",
        "og:description": "Read the latest news and analysis about Amazon on TechCrunch.",
        "og:url": "https://techcrunch.com/tag/amazon/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2022/09/amazon-logo.jpg?resize=1200,653",
        "og:image:width": "1200",
        "og:image:height": "653",
        "og:image:type": "image/jpeg",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Tag",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/tag/amazon/",
        "url": "https://techcrunch.com/tag/amazon/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "Amazon’s Echo is ending its ‘Do Not Send Voice Recordings’ feature, starting March 28",
            "url": "https://techcrunch.com/2025/03/15/amazons-echo-will-send-all-voice-recordings-to-the-cloud-starting-march-28/",
            "author": "Anthony Ha",
            "date": "2025-03-15",
            "category": "In Brief",
            "image": "https://techcrunch.com/wp-content/uploads/2023/06/maxresdefault_6d8ae7.jpg"
          },
          {
            "title": "Amazon is still hosting spyware victims’ data weeks after breach alert",
            "url": "https://techcrunch.com/2025/03/13/amazon-is-still-hosting-stalkerware-victims-data-weeks-after-breach-alert/",
            "author": "Zack Whittaker",
            "date": "2025-03-13",
            "category": "Security",
            "image": "https://techcrunch.com/wp-content/uploads/2021/12/aws-logo-glitch.gif?w=668"
          },
          {
            "title": "Prime Video tests AI dubbing for select movies and TV series",
            "url": "https://techcrunch.com/2025/03/05/prime-video-tests-ai-dubbing-for-select-movies-and-tv-series/",
            "author": "Lauren Forristal",
            "date": "2025-03-05",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/prime-video-aidubbing-.jpeg"
          },
          {
            "title": "Amazon reportedly forms a new agentic AI group",
            "url": "https://techcrunch.com/2025/03/04/amazon-reportedly-forms-a-new-agentic-ai-group/",
            "author": "Maxwell Zeff",
            "date": "2025-03-04",
            "category": "In Brief",
            "image": "https://techcrunch.com/wp-content/uploads/2023/05/GettyImages-1252532025-e1683723342674.jpg"
          },
          {
            "title": "Amazon is reportedly developing its own AI ‘reasoning’ model",
            "url": "https://techcrunch.com/2025/03/04/amazon-is-reportedly-developing-its-own-ai-reasoning-model/",
            "author": "Kyle Wiggers",
            "date": "2025-03-04",
            "category": "In Brief",
            "image": "https://techcrunch.com/wp-content/uploads/2024/11/GettyImages-1445867611.jpg"
          },
          {
            "title": "No part of Amazon is ‘unaffected’ by AI, says its head of AGI",
            "url": "https://techcrunch.com/2025/03/03/no-part-of-amazon-is-unaffected-by-ai-says-its-head-of-agi/",
            "author": "Mike Butcher",
            "date": "2025-03-03",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Vishal-Sharma-Amazons-VP-of-Artificial-General-Intelligence.jpg"
          },
          {
            "title": "Amazon debuts Ocelot, its first quantum computing chip",
            "url": "https://techcrunch.com/2025/02/27/amazon-debuts-ocelot-its-first-quantum-computing-chip/",
            "author": "Paul Sawers",
            "date": "2025-02-27",
            "category": "In Brief",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/download-e1740657767704.webp"
          },
          {
            "title": "Amazon Alexa+ can read, summarize and recall lengthy documents",
            "url": "https://techcrunch.com/2025/02/26/alexa-can-read-summarize-and-recall-lengthy-documents/",
            "author": "Lauren Forristal",
            "date": "2025-02-26",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/1000002054.jpg"
          },
          {
            "title": "Amazon Alexa+ can do your grocery shopping, too",
            "url": "https://techcrunch.com/2025/02/26/amazon-alexa-can-do-your-grocery-shopping-too/",
            "author": "Sarah Perez",
            "date": "2025-02-26",
            "category": "Commerce",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/alexa-plus.jpeg"
          },
          {
            "title": "Amazon Alexa+ costs $19.99, free for Prime members",
            "url": "https://techcrunch.com/2025/02/26/amazon-alexa-costs-19-99-free-for-prime-members/",
            "author": "Kyle Wiggers",
            "date": "2025-02-26",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/PXL_20250226_163301221.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Biotech News | Read the latest health news on TechCrunch",
        "description": "Read the latest news about biotech and health, from the most recent health tech and medical devices to research in synthetic biology and genetics.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Biotech News | Read the latest health news on TechCrunch",
        "ogDescription": "Read the latest news about biotech and health, from the most recent health tech and medical devices to research in synthetic biology and genetics.",
        "ogUrl": "https://techcrunch.com/category/biotech-health/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "6377e180-12ee-4231-97bc-278dbc89e680",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Biotech News | Read the latest health news on TechCrunch",
        "og:description": "Read the latest news about biotech and health, from the most recent health tech and medical devices to research in synthetic biology and genetics.",
        "og:url": "https://techcrunch.com/category/biotech-health/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/biotech-health/",
        "url": "https://techcrunch.com/category/biotech-health/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "Google plans to release new ‘open’ AI models for drug discovery",
            "url": "https://techcrunch.com/2025/03/18/google-plans-to-release-new-open-ai-models-for-drug-discovery/",
            "author": "Kyle Wiggers",
            "date": "1 day ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2021/01/GettyImages-1230444599.jpg"
          },
          {
            "title": "YC-backed ReactWise is applying AI to speed up drug manufacturing",
            "url": "https://techcrunch.com/2025/03/17/yc-backed-reactwise-is-applying-ai-to-speed-up-drug-manufacturing/",
            "author": "Natasha Lomas",
            "date": "2 days ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Fundraising-announcement-picture-1.jpg"
          },
          {
            "title": "Travis Kalanick wants to do a lot more than develop more ghost kitchens",
            "url": "https://techcrunch.com/2025/03/17/travis-kalanick-wants-to-do-a-lot-more-than-develop-more-ghost-kitchens/",
            "author": "Connie Loizos",
            "date": "2 days ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2019/04/GettyImages-1132384785.jpg"
          },
          {
            "title": "Anti-aging zealot Bryan Johnson wants to start ‘foodome sequencing’",
            "url": "https://techcrunch.com/2025/03/13/anti-aging-zealot-bryan-johnson-wants-to-start-foodome-sequencing/",
            "author": "Rebecca Bellan",
            "date": "Mar 13, 2025",
            "category": "Biotech & Health",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Screenshot-2025-03-13-at-6.23.04PM.png"
          },
          {
            "title": "Elea AI is chasing the healthcare productivity opportunity by targeting pathology labs’ legacy systems",
            "url": "https://techcrunch.com/2025/03/12/elea-ai-is-chasing-the-healthcare-productivity-opportunity-by-targeting-pathology-labs-legacy-systems/",
            "author": "Natasha Lomas",
            "date": "Mar 12, 2025",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Elea-team-pic.jpg"
          },
          {
            "title": "Virtual physical therapists Hinge Health files for IPO, estimated to raise $500M",
            "url": "https://techcrunch.com/2025/03/11/virtual-physical-therapists-hinge-health-files-for-ipo-estimated-to-raise-500m/",
            "author": "Marina Temkin",
            "date": "Mar 11, 2025",
            "category": "Biotech & Health",
            "image": "https://techcrunch.com/wp-content/uploads/2021/10/HingeHealth_CV-Lunge.jpg"
          },
          {
            "title": "Junction, an API to link health wearables with labs, raises $18M",
            "url": "https://techcrunch.com/2025/03/11/junction-an-api-to-link-health-wearables-with-labs-raises-18m/",
            "author": "Mike Butcher",
            "date": "Mar 11, 2025",
            "category": "Biotech & Health",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TeamPhoto-1.jpg"
          },
          {
            "title": "Radiology AI software provider Gleamer expands into MRI with two M&A transactions",
            "url": "https://techcrunch.com/2025/03/10/radiology-ai-software-provider-gleamer-expands-into-mri-with-two-small-acquisitions/",
            "author": "Romain Dillet",
            "date": "Mar 10, 2025",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-548557055.jpg"
          },
          {
            "title": "Colossal CEO Ben Lamm says humanity has a ‘moral obligation’ to pursue de-extinction tech",
            "url": "https://techcrunch.com/2025/03/09/colossal-ceo-ben-lamm-says-humanity-has-a-moral-obligation-to-pursue-de-extinction-tech/",
            "author": "Kyle Wiggers",
            "date": "Mar 9, 2025",
            "category": "Biotech & Health",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Screenshot-2025-03-09-at-2.28.04PM.png"
          },
          {
            "title": "Not all cancer patients need chemo — Ataraxis AI raised $20M to personalize treatment",
            "url": "https://techcrunch.com/2025/03/05/not-all-cancer-patients-need-chemo-ataraxis-ai-raised-20m-to-personalize-treatment/",
            "author": "Charles Rollet",
            "date": "Mar 5, 2025",
            "category": "Startups",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Founders2.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Events Archive | TechCrunch",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Events Archive",
        "ogUrl": "https://techcrunch.com/events/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "21ef4384-9564-4bfc-9367-27d86adba6e1",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "website",
        "og:title": "Events Archive",
        "og:url": "https://techcrunch.com/events/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "og:image:width": "1200",
        "og:image:height": "486",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/events/",
        "url": "https://techcrunch.com/events/",
        "statusCode": 200
      },
      "json": {
        "upcoming_events": [
          {
            "title": "StrictlyVC San Francisco 2025",
            "date": "April 3, 2025",
            "location": "San Francisco, CA",
            "registration_link": "https://techcrunch.com/events/#register",
            "sponsor_link": "https://techcrunch.com/advertise/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/StrictlyVC-SF-2025-featured.png",
            "notes": "Near capacity!"
          },
          {
            "title": "The Future of AI: Domain-Specific Agents",
            "date": "April 22, 2025",
            "location": "Virtual",
            "registration_link": "https://techcrunch.com/events/#register",
            "sponsor_link": "https://techcrunch.com/events/the-future-of-ai-domain-specific-agents/?utm_medium=website&utm_source=techcrunch&utm_campaign=databricks2025&utm_content=event%20banner&utm_source=techcrunch&promo=tceventspage&display=",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/tc-databricks-only-1600x900-1.png",
            "notes": "Free online event"
          },
          {
            "title": "TC Sessions: AI",
            "date": "June 5, 2025",
            "location": "Berkeley, CA",
            "registration_link": "https://techcrunch.com/events/tc-sessions-ai/tickets/",
            "sponsor_link": "https://techcrunch.com/advertise/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/TC-Sessions-AI-2025-Featured-Event-1.png",
            "notes": "Early Bird rates!"
          },
          {
            "title": "StrictlyVC Menlo Park",
            "date": "June 18, 2025",
            "location": "Menlo Park, California",
            "registration_link": "https://techcrunch.com/events/#h-register",
            "sponsor_link": "https://techcrunch.com/advertise/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/StrictlyVC-SF-2025-featured-lockup.png",
            "notes": "Limited space available!"
          },
          {
            "title": "TechCrunch All Stage 2025",
            "date": "July 15, 2025",
            "location": "Boston, Massachusetts",
            "registration_link": "https://techcrunch.com/events/techcrunch-all-stage-2025/tickets/",
            "sponsor_link": "https://techcrunch.com/advertise/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/All-Stage-2025-Featured-Event-1.png",
            "notes": "Early Bird rates!"
          },
          {
            "title": "TechCrunch Disrupt 2025",
            "date": "October 27 – 29, 2025",
            "location": "San Francisco, CA",
            "registration_link": "https://techcrunch.com/events/tc-disrupt-2025/tickets",
            "sponsor_link": "https://techcrunch.com/advertise/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/12/TechCrunch-Disrupt-2025-Featured-1.png",
            "notes": "Secure low rates now!"
          }
        ],
        "past_events": [
          {
            "date": "Dec 4, 2024",
            "location": "San Francisco, CA",
            "title": "StrictlyVC San Francisco",
            "link": "https://techcrunch.com/events/strictlyvc-san-francisco/"
          },
          {
            "date": "Nov 13, 2024",
            "location": "New York, NY",
            "title": "StrictlyVC NYC",
            "link": "https://techcrunch.com/events/strictlyvc-nyc/"
          },
          {
            "date": "Oct 28 – 30, 2024",
            "location": "San Francisco, CA",
            "title": "TechCrunch Disrupt 2024",
            "link": "https://techcrunch.com/events/tc-disrupt-2024/"
          },
          {
            "date": "Jun 11, 2024",
            "location": "Washington, D.C.",
            "title": "StrictlyVC – Washington, D.C.",
            "link": "https://techcrunch.com/events/strictlyvc-washington-d-c/"
          },
          {
            "date": "May 21, 2024",
            "title": "StrictlyVC – London",
            "link": "https://techcrunch.com/events/strictlyvc-london/"
          },
          {
            "date": "Apr 25, 2024",
            "location": "Boston, Massachusetts",
            "title": "TechCrunch Early Stage 2024",
            "link": "https://techcrunch.com/events/tc-early-stage-2024/"
          },
          {
            "date": "Feb 29, 2024",
            "location": "Los Angeles, CA",
            "title": "StrictlyVC – Los Angeles",
            "link": "https://techcrunch.com/events/strictlyvc-los-angeles/"
          },
          {
            "date": "Jan 24, 2024",
            "location": "San Francisco, CA",
            "title": "StrictlyVC – San Francisco",
            "link": "https://techcrunch.com/events/strictlyvc-events-san-francisco/"
          },
          {
            "date": "Nov 15, 2023",
            "title": "Enterprise Marketing Masterclass",
            "link": "https://techcrunch.com/events/enterprise-marketing-masterclass/"
          },
          {
            "date": "Sep 19 – 21, 2023",
            "location": "San Francisco, CA",
            "title": "TechCrunch Disrupt 2023",
            "link": "https://techcrunch.com/events/tc-disrupt-2023/"
          }
        ],
        "subscribe": {
          "description": "Get the latest event announcements, special discounts and other event offers.",
          "email_required": true,
          "terms_link": "https://techcrunch.com/events/#",
          "privacy_notice_link": "https://techcrunch.com/events/#"
        },
        "partner_info": {
          "description": "TechCrunch offers many ways for partners to engage directly with our attendees before, during, and after the event.",
          "contact_link": "https://techcrunch.com/advertise"
        }
      }
    },
    {
      "metadata": {
        "title": "Venture Capital News | TechCrunch",
        "description": "Venture capital news and coverage feature all the VCs, VC-backed startups, and investment trends that founders, investors, and students should be tracking.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Venture Capital News | TechCrunch",
        "ogDescription": "Venture capital news and coverage feature all the VCs, VC-backed startups, and investment trends that founders, investors, and students should be tracking.",
        "ogUrl": "https://techcrunch.com/category/venture/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "01f062a5-3c76-4990-b69c-3cc6aabfb1c6",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Venture Capital News | TechCrunch",
        "og:description": "Venture capital news and coverage feature all the VCs, VC-backed startups, and investment trends that founders, investors, and students should be tracking.",
        "og:url": "https://techcrunch.com/category/venture/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/venture/",
        "url": "https://techcrunch.com/category/venture/",
        "statusCode": 200
      },
      "json": {
        "latest_news": [
          {
            "title": "A comprehensive list of 2025 tech layoffs",
            "url": "https://techcrunch.com/2025/03/19/tech-layoffs-2025-list/",
            "author": [
              {
                "name": "Cody Corrall",
                "url": "https://techcrunch.com/author/cody-corrall/"
              },
              {
                "name": "Alyssa Stringer",
                "url": "https://techcrunch.com/author/alyssa-stringer/"
              }
            ],
            "published_time": "7 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/02/layoffs-e1684946575831.jpg"
          },
          {
            "title": "New $5M deep tech fund aims to lure founders from universities",
            "url": "https://techcrunch.com/2025/03/18/new-5m-deep-tech-fund-aims-to-lure-founders-from-universities/",
            "author": [
              {
                "name": "Tim De Chant",
                "url": "https://techcrunch.com/author/tim-de-chant/"
              }
            ],
            "published_time": "17 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/03/GettyImages-693635157.jpg"
          },
          {
            "title": "Al Gore’s Just Climate fund raises $175M from Microsoft and CalSTRS for nature-based climate investments",
            "url": "https://techcrunch.com/2025/03/18/al-gores-just-climate-fund-raises-175m-from-microsoft-and-calstrs-for-nature-based-climate-investments/",
            "author": [
              {
                "name": "Tim De Chant",
                "url": "https://techcrunch.com/author/tim-de-chant/"
              }
            ],
            "published_time": "23 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2022/06/Big-Lonely-Doug.jpg"
          },
          {
            "title": "Here’s why seed fund investor Michael Kim of Cendana Capital says last year was among his most liquid",
            "url": "https://techcrunch.com/podcast/heres-why-seed-fund-investor-michael-kim-of-cendana-capital-says-last-year-was-among-his-most-liquid/",
            "author": [
              {
                "name": "Maggie Stamets",
                "url": "https://techcrunch.com/author/maggie-stamets/"
              }
            ],
            "published_time": "23 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/01/GettyImages-1179916387.jpg"
          },
          {
            "title": "TechCrunch All Stage unveils a powerhouse agenda for founders",
            "url": "https://techcrunch.com/2025/03/17/techcrunch-all-stage-unveils-a-powerhouse-agenda-for-founders/",
            "author": [
              {
                "name": "TechCrunch Events",
                "url": "https://techcrunch.com/author/techcrunch-events/"
              }
            ],
            "published_time": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/53679979052_da1066fe91_o.jpg"
          },
          {
            "title": "VC Aileen Lee highlights how the broader investor exodus is worsening woes for unicorn companies",
            "url": "https://techcrunch.com/2025/03/15/vc-aileen-lee-highlights-how-the-broader-investor-exodus-is-worsening-woes-for-unicorn-companies/",
            "author": [
              {
                "name": "Connie Loizos",
                "url": "https://techcrunch.com/author/connie-loizos/"
              }
            ],
            "published_time": "4 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2018/05/rec_asa_code18-20180530-171602-2739-xl.jpg"
          },
          {
            "title": "Y Combinator’s police surveillance darling Flock Safety raises $275M at $7.5B valuation",
            "url": "https://techcrunch.com/2025/03/13/y-combinators-police-surveillance-darling-flock-safety-raises-275m-at-7-5b-valuation/",
            "author": [
              {
                "name": "Julie Bort",
                "url": "https://techcrunch.com/author/julie-bort/"
              }
            ],
            "published_time": "Mar 13, 2025",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GarrettLangley_Founder_CEO.jpg"
          },
          {
            "title": "Y Combinator urges the White House to support Europe’s Digital Markets Act",
            "url": "https://techcrunch.com/2025/03/13/y-combinator-urges-the-white-house-to-support-europes-digital-markets-act/",
            "author": [
              {
                "name": "Maxwell Zeff",
                "url": "https://techcrunch.com/author/maxwell-zeff/"
              }
            ],
            "published_time": "Mar 13, 2025",
            "image": "https://techcrunch.com/wp-content/uploads/2023/04/yc-ocean.jpg"
          },
          {
            "title": "Could deep tech serve as Europe’s path to autonomy from the US?",
            "url": "https://techcrunch.com/2025/03/13/could-europes-16b-deeptech-bet-be-a-path-to-autonomy-from-the-us/",
            "author": [
              {
                "name": "Mike Butcher",
                "url": "https://techcrunch.com/author/mike-butcher/"
              }
            ],
            "published_time": "Mar 13, 2025",
            "image": "https://techcrunch.com/wp-content/uploads/2023/02/GettyImages-886180226-e1676981025926.jpg"
          },
          {
            "title": "Vento rolls out new €75M fund for Italian founders, no matter where they live",
            "url": "https://techcrunch.com/2025/03/12/vento-hopes-new-e75m-fund-for-italian-founders-anywhere-will-kick-italys-ecosystem-into-life/",
            "author": [
              {
                "name": "Mike Butcher",
                "url": "https://techcrunch.com/author/mike-butcher/"
              }
            ],
            "published_time": "Mar 12, 2025",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Vento-team.jpg"
          },
          {
            "title": "VC Aileen Lee still sees the most promise in ‘unsexy tech’",
            "url": "https://techcrunch.com/podcast/vc-aileen-lee-still-sees-the-most-promise-in-unsexy-tech/",
            "author": [
              {
                "name": "Maggie Stamets",
                "url": "https://techcrunch.com/author/maggie-stamets/"
              }
            ],
            "published_time": "Mar 12, 2025",
            "image": "https://techcrunch.com/wp-content/uploads/2018/09/disruptsf18_aileen_lee_megan_quinn_sarah_tavel-0463.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Nvidia GTC 2025 live updates: Blackwell Ultra, GM partnerships, and two 'personal AI supercomputers' | TechCrunch",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Nvidia GTC 2025 live updates: Blackwell Ultra, GM partnerships, and two 'personal AI supercomputers'",
        "ogDescription": "GTC, Nvidia’s biggest conference of the year, starts this week in San Jose. We're on the ground covering all the major developments. CEO Jensen Huang will give a keynote address focusing on — what else? — AI and accelerating computing technologies, according to Nvidia. We’re expecting Huang to reveal more about Nvidia’s next flagship GPU series, Blackwell Ultra, and the next-gen Rubin chip architecture. Also likely on the agenda: automotive, robotics, and lots and lots of AI updates.",
        "ogUrl": "https://techcrunch.com/storyline/nvidia-gtc-2025-live-updates-blackwell-ultra-gm-partnerships-and-two-personal-ai-supercomputers/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2024/10/GettyImages-2087335475.jpg?resize=1200,799",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "modifiedTime": "2025-03-18T23:37:42+00:00",
        "scrapeId": "7a8edaa1-90bb-485d-ba69-1a945368b8ca",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Nvidia GTC 2025 live updates: Blackwell Ultra, GM partnerships, and two 'personal AI supercomputers'",
        "og:description": "GTC, Nvidia’s biggest conference of the year, starts this week in San Jose. We're on the ground covering all the major developments. CEO Jensen Huang will give a keynote address focusing on — what else? — AI and accelerating computing technologies, according to Nvidia. We’re expecting Huang to reveal more about Nvidia’s next flagship GPU series, Blackwell Ultra, and the next-gen Rubin chip architecture. Also likely on the agenda: automotive, robotics, and lots and lots of AI updates.",
        "og:url": "https://techcrunch.com/storyline/nvidia-gtc-2025-live-updates-blackwell-ultra-gm-partnerships-and-two-personal-ai-supercomputers/",
        "og:site_name": "TechCrunch",
        "article:publisher": "https://www.facebook.com/techcrunch",
        "article:modified_time": "2025-03-18T23:37:42+00:00",
        "og:image": "https://techcrunch.com/wp-content/uploads/2024/10/GettyImages-2087335475.jpg?resize=1200,799",
        "og:image:width": "1200",
        "og:image:height": "799",
        "og:image:type": "image/jpeg",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "twitter:label1": "Est. reading time",
        "twitter:data1": "1 minute",
        "twitter:label2": "Written by",
        "twitter:data2": "Kyle Wiggers",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Storyline;Post ID:2980891;Primary Category:AI",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/storyline/nvidia-gtc-2025-live-updates-blackwell-ultra-next-gen-rubin-chip-architecture-and-much-more/",
        "url": "https://techcrunch.com/storyline/nvidia-gtc-2025-live-updates-blackwell-ultra-gm-partnerships-and-two-personal-ai-supercomputers/",
        "statusCode": 200
      },
      "json": {
        "latest_news": {
          "title": "Nvidia GTC 2025 live updates: Blackwell Ultra, GM partnerships, and two ‘personal AI supercomputers’",
          "author": {
            "name": "Kyle Wiggers",
            "url": "https://techcrunch.com/author/kyle-wiggers/"
          },
          "date": "March 17, 2025 – March 20, 2025",
          "image": {
            "url": "https://techcrunch.com/wp-content/uploads/2024/10/GettyImages-2087335475.jpg",
            "alt": "Jensen Huang, co-founder and chief executive officer of Nvidia Corp., ByteDance"
          },
          "content": [
            {
              "timestamp": "16 hours ago",
              "title": "Nvidia partners with Google DeepMind and Disney to make robots more lively",
              "author": {
                "name": "Maxwell Zeff",
                "url": "https://techcrunch.com/author/maxwell-zeff/"
              },
              "url": "https://techcrunch.com/snippet/2983012/nvidia-partners-with-google-deepmind-and-disney-to-make-robots-more-lively/",
              "summary": "Nvidia is collaborating with Disney Research and Google DeepMind to develop Newton, a physics engine to simulate robotic movements in real-world settings, Nvidia CEO Jensen Huang announced at GTC 2025 on Tuesday."
            },
            {
              "timestamp": "16 hours ago",
              "title": "A new, open source AI model for humanoid robotics",
              "author": {
                "name": "Kyle Wiggers",
                "url": "https://techcrunch.com/author/kyle-wiggers/"
              },
              "url": "https://techcrunch.com/snippet/2982962/a-new-open-source-ai-model-for-humanoid-robotics/",
              "summary": "Nvidia is releasing what it’s calling an AI foundation model for humanoid robotics, dubbed Groot N1, which features a dual system architecture inspired by human cognitive processes."
            },
            {
              "timestamp": "17 hours ago",
              "title": "AI ‘agents’ is an ‘overused’ term, says Nvidia-backed agents startup founder",
              "author": {
                "name": "Charles Rollet",
                "url": "https://techcrunch.com/author/charles-rollet/"
              },
              "url": "https://techcrunch.com/snippet/2982960/reflection-ais-co-founder-doesnt-know-what-an-ai-agent-is-either/",
              "summary": "No one knows what the hell AI 'agents' are, and even an Nvidia-backed AI agents startup founder admits the term is 'overused.'"
            },
            {
              "timestamp": "17 hours ago",
              "title": "Wall Street doesn’t seem terribly impressed with Nvidia’s reveals",
              "author": {
                "name": "Kyle Wiggers",
                "url": "https://techcrunch.com/author/kyle-wiggers/"
              },
              "url": "https://techcrunch.com/snippet/2982943/wall-street-doesnt-seem-terribly-impressed-with-nvidias-reveals/",
              "summary": "Nvidia revealed a bunch of products during the first day of GTC, but Wall Street seemingly wasn’t impressed."
            },
            {
              "timestamp": "17 hours ago",
              "title": "Going all in on autonomous vehicles",
              "author": {
                "name": "Kirsten Korosec",
                "url": "https://techcrunch.com/author/kirsten-korosec/"
              },
              "url": "https://techcrunch.com/snippet/2982917/going-all-in-on-autonomous-vehicles/",
              "summary": "During the automotive portion of CEO Jensen Huang’s speech, he referred to AlexNet, a neural network architecture that gained widespread attention in 2012."
            },
            {
              "timestamp": "18 hours ago",
              "title": "‘AI personal supercomputers’",
              "author": {
                "name": "Rebecca Szkutak",
                "url": "https://techcrunch.com/author/rebecca-szkutak/"
              },
              "url": "https://techcrunch.com/snippet/2982841/ai-personal-supercomputers/",
              "summary": "CEO Jensen Huang unveiled two new machines: DGX Spark and DGX Station, which will allow users to prototype, fine-tune, and run AI models."
            },
            {
              "timestamp": "19 hours ago",
              "title": "GM is turning to Nvidia to bring AI into the physical world",
              "author": {
                "name": "Kirsten Korosec",
                "url": "https://techcrunch.com/author/kirsten-korosec/"
              },
              "url": "https://techcrunch.com/snippet/2982763/gm-is-turning-to-nvidia-to-bring-ai-into-the-physical-world/",
              "summary": "General Motors has been working with Nvidia for years now, but the two companies are expanding that collaboration."
            },
            {
              "timestamp": "19 hours ago",
              "title": "Nvidia touts ‘incredible’ new reasoning model for enterprises that beats DeepSeek",
              "author": {
                "name": "Charles Rollet",
                "url": "https://techcrunch.com/author/charles-rollet/"
              },
              "url": "https://techcrunch.com/snippet/2982759/nvidia-touts-incredible-new-reasoning-model-for-enterprises-that-beats-deepseek/",
              "summary": "Nvidia CEO Jensen Huang announced a new Llama-based reasoning model for enterprises during his keynote at GTC."
            },
            {
              "timestamp": "20 hours ago",
              "title": "‘Chief revenue destroyer’",
              "author": {
                "name": "Rebecca Szkutak",
                "url": "https://techcrunch.com/author/rebecca-szkutak/"
              },
              "url": "https://techcrunch.com/snippet/2982699/chief-revenue-destroyer/",
              "summary": "Huang called himself the 'chief revenue destroyer' during his GTC keynote today after talking up the company’s new Blackwell architecture."
            },
            {
              "timestamp": "20 hours ago",
              "title": "A slew of new GPUs are coming",
              "author": {
                "name": "Kyle Wiggers",
                "url": "https://techcrunch.com/author/kyle-wiggers/"
              },
              "url": "https://techcrunch.com/snippet/2982676/a-slew-of-new-gpus-are-coming/",
              "summary": "During his keynote, CEO Jensen Huang announced a ton of new GPUs, including the Vera Rubin."
            },
            {
              "timestamp": "20 hours ago",
              "title": "Nvidia versus DeepSeek",
              "author": {
                "name": "Maxwell Zeff",
                "url": "https://techcrunch.com/author/maxwell-zeff/"
              },
              "url": "https://techcrunch.com/snippet/2982612/nvidia-versus-deepseek/",
              "summary": "Jensen Huang has it out for Chinese AI lab DeepSeek, claiming their reasoning AI model uses significantly more computing."
            },
            {
              "timestamp": "21 hours ago",
              "title": "The AI ‘inflection point’",
              "author": {
                "name": "Cody Corrall",
                "url": "https://techcrunch.com/author/cody-corrall/"
              },
              "url": "https://techcrunch.com/snippet/2982606/the-ai-inflection-point/",
              "summary": "During his GTC 2025 keynote presentation, Nvidia CEO Jensen Huang said that 'AI is going through an inflection point.'"
            }
          ],
          "topics": [
            {
              "name": "AI",
              "url": "https://techcrunch.com/category/artificial-intelligence/"
            },
            {
              "name": "Enterprise",
              "url": "https://techcrunch.com/category/enterprise/"
            },
            {
              "name": "nvidia",
              "url": "https://techcrunch.com/tag/nvidia/"
            },
            {
              "name": "nvidia gtc",
              "url": "https://techcrunch.com/tag/nvidia-gtc/"
            }
          ]
        }
      }
    },
    {
      "metadata": {
        "title": "AI News & Artificial Intelligence | TechCrunch",
        "description": "Read the latest on artificial intelligence and machine learning tech, the companies that are building them, and the ethical issues AI raises today.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "AI News & Artificial Intelligence | TechCrunch",
        "ogDescription": "Read the latest on artificial intelligence and machine learning tech, the companies that are building them, and the ethical issues AI raises today.",
        "ogUrl": "https://techcrunch.com/category/artificial-intelligence/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "9ffd57fb-7312-406e-b32d-a911369f16cf",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "AI News & Artificial Intelligence | TechCrunch",
        "og:description": "Read the latest on artificial intelligence and machine learning tech, the companies that are building them, and the ethical issues AI raises today.",
        "og:url": "https://techcrunch.com/category/artificial-intelligence/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/artificial-intelligence/",
        "url": "https://techcrunch.com/category/artificial-intelligence/",
        "statusCode": 200
      },
      "json": {
        "news": [
          {
            "title": "Let your voice be heard! Vote for who you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/19/let-your-voice-be-heard-vote-for-who-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": "TechCrunch Events",
            "time_ago": "35 minutes ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TechCrunch-Sessions-AI-Audience-Choice-Finalists.png",
            "category": "TC Sessions: AI"
          },
          {
            "title": "Academics accuse AI startups of co-opting peer review for publicity",
            "url": "https://techcrunch.com/2025/03/19/academics-accuse-ai-startups-of-co-opting-peer-review-for-publicity/",
            "author": "Kyle Wiggers",
            "time_ago": "3 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2021/03/GettyImages-875579516.jpg",
            "category": "AI"
          },
          {
            "title": "Prezent raises $20M to build AI for slide decks",
            "url": "https://techcrunch.com/2025/03/19/prezent-raises-20m-to-build-ai-for-slide-decks/",
            "author": "Jagmeet Singh",
            "time_ago": "4 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/presentation-getty.jpg",
            "category": "AI"
          },
          {
            "title": "Nvidia and Google DeepMind will help power Disney’s cute robots",
            "url": "https://techcrunch.com/2025/03/18/nvidia-and-google-deepmind-will-help-power-disneys-cute-robots/",
            "author": "Maxwell Zeff",
            "time_ago": "16 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205761750.jpg",
            "category": "Robotics"
          },
          {
            "title": "J. D. Vance claims freeing AI from regulation is good for American workers and tech innovators",
            "url": "https://techcrunch.com/2025/03/18/jd-vance-claims-freeing-ai-from-regulation-is-good-for-american-workers-and-tech-innovators/",
            "author": "Marina Temkin",
            "time_ago": "16 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205707549.jpg",
            "category": "Government & Policy"
          },
          {
            "title": "What Tesla can and can’t do in California with its new passenger transportation permit",
            "url": "https://techcrunch.com/2025/03/18/what-tesla-can-and-cant-do-in-california-with-its-new-passenger-transportation-permit/",
            "author": "Kirsten Korosec",
            "time_ago": "17 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205217071.jpg",
            "category": "Transportation"
          },
          {
            "title": "An AI model from over a decade ago sparked Nvidia’s investment in autonomous vehicles",
            "url": "https://techcrunch.com/2025/03/18/an-ai-model-from-over-a-decade-ago-sparked-nvidias-investment-in-autonomous-vehicles/",
            "author": "Kirsten Korosec",
            "time_ago": "18 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205707549.jpg",
            "category": "Transportation"
          },
          {
            "title": "Nvidia announces two ‘personal AI supercomputers’",
            "url": "https://techcrunch.com/2025/03/18/nvidia-announces-two-personal-ai-supercomputers/",
            "author": "Rebecca Szkutak",
            "time_ago": "18 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/nvidia-dgx-spark-and-nvidia-dgx-station.jpg",
            "category": "AI"
          },
          {
            "title": "GM teams up with Nvidia to bring AI to robots, factories, and self-driving cars",
            "url": "https://techcrunch.com/2025/03/18/gm-teams-up-with-nvidia-to-bring-ai-to-robots-factories-and-self-driving-cars/",
            "author": "Kirsten Korosec",
            "time_ago": "19 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/nvidia-gm.jpg",
            "category": "Transportation"
          },
          {
            "title": "Nvidia debuts Groot N1, a foundation model for humanoid robotics",
            "url": "https://techcrunch.com/2025/03/18/nvidia-debuts-groot-n1-a-foundation-model-for-humanoid-robotics/",
            "author": "Kyle Wiggers",
            "time_ago": "19 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/nvidia-groot-gtc-2025-2.png",
            "category": "AI"
          },
          {
            "title": "Here’s why Google pitched its $32B Wiz acquisition as ‘multicloud’",
            "url": "https://techcrunch.com/2025/03/18/heres-why-google-pitched-its-32b-wiz-acquisition-as-multicloud/",
            "author": "Ingrid Lunden",
            "time_ago": "19 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2161842016.jpg",
            "category": "AI"
          },
          {
            "title": "Blackwell Ultra, Vera Rubin, and Feynman are Nvidia’s next GPUs",
            "url": "https://techcrunch.com/2025/03/18/nvidia-announces-new-gpus-at-gtc-2025-including-rubin/",
            "author": "Kyle Wiggers",
            "time_ago": "20 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205211212-1.jpg",
            "category": "AI"
          },
          {
            "title": "Stability AI’s new AI model turns photos into 3D scenes",
            "url": "https://techcrunch.com/2025/03/18/stability-ais-new-ai-model-turns-photos-into-3d-scenes/",
            "author": "Kyle Wiggers",
            "time_ago": "22 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/upscalemedia-transformed-1.png",
            "category": "AI"
          },
          {
            "title": "How to watch Nvidia GTC 2025, including CEO Jensen Huang’s keynote",
            "url": "https://techcrunch.com/2025/03/18/how-to-watch-nvidia-gtc-2025-including-ceo-jensen-huangs-keynote/",
            "author": "Kyle Wiggers",
            "time_ago": "22 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2169339854.jpg",
            "category": "AI"
          },
          {
            "title": "Google brings a ‘canvas’ feature to Gemini, plus Audio Overview",
            "url": "https://techcrunch.com/2025/03/18/google-brings-a-canvas-feature-to-gemini-plus-audio-overview/",
            "author": "Kyle Wiggers",
            "time_ago": "23 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2169339854.jpg",
            "category": "AI"
          },
          {
            "title": "Anthropic-backed AI-powered code review platform Graphite raises cash",
            "url": "https://techcrunch.com/2025/03/18/anthropic-backed-ai-powered-code-review-platform-graphite-raises-cash/",
            "author": "Kyle Wiggers",
            "time_ago": "24 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/06/GettyImages-1388336038.jpg",
            "category": "Fundraising"
          },
          {
            "title": "Arcade raises $12M from Perplexity co-founder’s new fund to make AI agents less awful",
            "url": "https://techcrunch.com/2025/03/18/arcade-raises-12m-from-perplexity-co-founders-new-fund-to-make-ai-agents-less-awful/",
            "author": "Julie Bort",
            "time_ago": "24 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Arcade-Alex-and-Sam-e1742244609355.jpg?w=564",
            "category": "Startups"
          },
          {
            "title": "Mark Zuckerberg says that Meta’s Llama models have hit 1B downloads",
            "url": "https://techcrunch.com/2025/03/18/mark-zuckerberg-says-that-metas-llama-models-have-hit-1b-downloads/",
            "author": "Kyle Wiggers",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/06/GettyImages-959993436-e1718640411389.jpg",
            "category": "AI"
          },
          {
            "title": "Make your choice! Vote for the speaker you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/18/make-your-choice-vote-for-the-speaker-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": "TechCrunch Events",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Early-Stage-Roundtable-Sessions-2.jpg",
            "category": "TC Sessions: AI"
          },
          {
            "title": "Anthropic is reportedly prepping a voice mode for Claude",
            "url": "https://techcrunch.com/2025/03/18/anthropic-is-reportedly-prepping-a-voice-mode-for-claude/",
            "author": "Ivan Mehta",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/09/1704678804.jpg",
            "category": "In Brief"
          },
          {
            "title": "Google launches new healthcare-related features for Search, Android",
            "url": "https://techcrunch.com/2025/03/18/google-adds-new-healthcare-related-features-in-search/",
            "author": "Ivan Mehta",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2020/06/GettyImages-1207206244.jpg",
            "category": "AI"
          },
          {
            "title": "Google plans to release new ‘open’ AI models for drug discovery",
            "url": "https://techcrunch.com/2025/03/18/google-plans-to-release-new-open-ai-models-for-drug-discovery/",
            "author": "Kyle Wiggers",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2021/01/GettyImages-1230444599.jpg",
            "category": "AI"
          },
          {
            "title": "OpenAI exec leaves to found materials science startup",
            "url": "https://techcrunch.com/2025/03/17/openai-exec-leaves-to-found-materials-science-startup/",
            "author": "Kyle Wiggers",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/05/openAI-spiral-teal.jpg",
            "category": "In Brief"
          },
          {
            "title": "Intel could be in for significant changes as Lip-Bu Tan takes on CEO role",
            "url": "https://techcrunch.com/2025/03/17/intel-could-be-in-for-significant-changes-as-lip-bu-tan-takes-on-ceo-role/",
            "author": "Rebecca Szkutak",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205047441.jpg",
            "category": "In Brief"
          },
          {
            "title": "People are using Google’s new AI model to remove watermarks from images",
            "url": "https://techcrunch.com/2025/03/17/people-are-using-googles-new-ai-model-to-remove-watermarks-from-images/",
            "author": "Kyle Wiggers",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2196352264.jpg",
            "category": "AI"
          },
          {
            "title": "Elon Musk’s AI company, xAI, acquires a generative AI video startup",
            "url": "https://techcrunch.com/2025/03/17/elon-musks-ai-company-xai-acquires-a-generative-ai-video-startup/",
            "author": "Kyle Wiggers",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2194754542.jpg",
            "category": "Media & Entertainment"
          },
          {
            "title": "OpenAI to start testing ChatGPT connectors for Google Drive and Slack",
            "url": "https://techcrunch.com/2025/03/17/openai-to-start-testing-chatgpt-connectors-for-google-drive-and-slack/",
            "author": "Kyle Wiggers",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2195918462.jpg",
            "category": "AI"
          },
          {
            "title": "YC-backed ReactWise is applying AI to speed up drug manufacturing",
            "url": "https://techcrunch.com/2025/03/17/yc-backed-reactwise-is-applying-ai-to-speed-up-drug-manufacturing/",
            "author": "Natasha Lomas",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Fundraising-announcement-picture-1.jpg",
            "category": "AI"
          },
          {
            "title": "Nvidia GTC 2025: What to expect from this year’s show",
            "url": "https://techcrunch.com/2025/03/17/nvidia-gtc-2025-what-to-expect-from-this-years-show/",
            "author": "Kyle Wiggers",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/11/GettyImages-2183848501.jpg",
            "category": "AI"
          },
          {
            "title": "Travis Kalanick wants to do a lot more than develop more ghost kitchens",
            "url": "https://techcrunch.com/2025/03/17/travis-kalanick-wants-to-do-a-lot-more-than-develop-more-ghost-kitchens/",
            "author": "Connie Loizos",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2019/04/GettyImages-1132384785.jpg",
            "category": "AI"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Latest News | TechCrunch",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Latest News | TechCrunch",
        "ogUrl": "https://techcrunch.com/latest/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "modifiedTime": "2024-12-12T16:59:45+00:00",
        "scrapeId": "3d9b00da-0e81-4b4c-8278-a7e2066069dd",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Latest News | TechCrunch",
        "og:url": "https://techcrunch.com/latest/",
        "og:site_name": "TechCrunch",
        "article:publisher": "https://www.facebook.com/techcrunch",
        "article:modified_time": "2024-12-12T16:59:45+00:00",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/02/tc-backlight-e1689786273147.png?w=1200",
        "og:image:width": "1200",
        "og:image:height": "486",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Latest",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/latest/",
        "url": "https://techcrunch.com/latest/",
        "statusCode": 200
      },
      "json": {
        "latestNews": [
          {
            "title": "Zoox recalls 258 self-driving cars over unexpected braking",
            "url": "https://techcrunch.com/2025/03/19/zoox-recalls-258-self-driving-cars-over-unexpected-braking/",
            "author": "Rebecca Bellan",
            "timeAgo": "7 minutes ago",
            "category": "Transportation",
            "image": "https://techcrunch.com/wp-content/uploads/2021/10/Zoox_Seattle2.jpg"
          },
          {
            "title": "Cape opens $99/month beta of its privacy-first mobile plan, inks Proton deal, raises $30M",
            "url": "https://techcrunch.com/2025/03/19/cape-opens-99-month-beta-of-its-privacy-first-mobile-plan-inks-proton-deal-raises-30m/",
            "author": "Ingrid Lunden",
            "timeAgo": "23 minutes ago",
            "category": "Privacy",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Cape-co-founders.jpg"
          },
          {
            "title": "Let your voice be heard! Vote for who you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/19/let-your-voice-be-heard-vote-for-who-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": "TechCrunch Events",
            "timeAgo": "34 minutes ago",
            "category": "TC Sessions: AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TechCrunch-Sessions-AI-Audience-Choice-Finalists.png"
          },
          {
            "title": "Google now lets kids use Google Wallet for in-store payments in select countries",
            "url": "https://techcrunch.com/2025/03/19/google-now-lets-kids-use-google-wallet-for-in-store-payments-in-select-countries/",
            "author": "Aisha Malik",
            "timeAgo": "34 minutes ago",
            "category": "Apps",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/google-wallet.jpg"
          },
          {
            "title": "Agentic AI startup AMT aims to be ‘Google Adwords for influencers,’ raises seed round",
            "url": "https://techcrunch.com/2025/03/19/agentic-ai-startup-amt-aims-to-be-google-adwords-for-influencers-raises-seed-round/",
            "author": "Mike Butcher",
            "timeAgo": "2 hours ago",
            "category": "Fundraising",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Tom-Hollands-and-Christian-Johnston-cofounders-of-AMT.jpeg"
          },
          {
            "title": "Researchers name several countries as potential Paragon spyware customers",
            "url": "https://techcrunch.com/2025/03/19/researchers-name-several-countries-as-potential-paragon-spyware-customers/",
            "author": "Lorenzo Franceschi-Bicchierai",
            "timeAgo": "3 hours ago",
            "category": "Security",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/android-spyware-green.jpg"
          },
          {
            "title": "Shopify transfers its US listing from the NYSE to the Nasdaq",
            "url": "https://techcrunch.com/2025/03/19/shopify-transfers-its-us-listing-from-the-nyse-to-the-nasdaq/",
            "author": "Paul Sawers",
            "timeAgo": "3 hours ago",
            "category": "Commerce",
            "image": "https://techcrunch.com/wp-content/uploads/2023/05/ShopifyIPO-e1683204310695.jpg"
          },
          {
            "title": "Academics accuse AI startups of co-opting peer review for publicity",
            "url": "https://techcrunch.com/2025/03/19/academics-accuse-ai-startups-of-co-opting-peer-review-for-publicity/",
            "author": "Kyle Wiggers",
            "timeAgo": "3 hours ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-875579516.jpg"
          },
          {
            "title": "Prezent raises $20M to build AI for slide decks",
            "url": "https://techcrunch.com/2025/03/19/prezent-raises-20m-to-build-ai-for-slide-decks/",
            "author": "Jagmeet Singh",
            "timeAgo": "4 hours ago",
            "category": "AI",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/presentation-getty.jpg"
          },
          {
            "title": "US paid music subscribers cross 100 million mark for the first time",
            "url": "https://techcrunch.com/2025/03/19/us-paid-music-subscribers-cross-100-million-mark-for-the-first-time/",
            "author": "Ivan Mehta",
            "timeAgo": "4 hours ago",
            "category": "Media & Entertainment",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2180853826.jpg"
          },
          {
            "title": "Aletiq secures $6.5M for its SaaS tool focused on product lifecycle management",
            "url": "https://techcrunch.com/2025/03/19/aletiq-secures-65m-for-its-saas-tool-focused-on-product-lifecycle-management/",
            "author": "Romain Dillet",
            "timeAgo": "4 hours ago",
            "category": "Enterprise",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1438543676.jpg"
          },
          {
            "title": "Factorial, a HR unicorn, snaps up $120M from General Catalyst to boost sales and marketing",
            "url": "https://techcrunch.com/2025/03/19/factorial-snaps-up-120m-from-general-catalyst-to-boost-its-hr-sales-and-marketing/",
            "author": "Ingrid Lunden",
            "timeAgo": "6 hours ago",
            "category": "Fundraising",
            "image": "https://techcrunch.com/wp-content/uploads/2019/11/GettyImages-1084168924-1.jpg"
          },
          {
            "title": "A comprehensive list of 2025 tech layoffs",
            "url": "https://techcrunch.com/2025/03/19/tech-layoffs-2025-list/",
            "authors": [
              "Cody Corrall",
              "Alyssa Stringer"
            ],
            "timeAgo": "7 hours ago",
            "category": "Startups",
            "image": "https://techcrunch.com/wp-content/uploads/2023/02/layoffs-e1684946575831.jpg"
          },
          {
            "title": "Trump fires FTC commissioners, setting up a legal battle",
            "url": "https://techcrunch.com/2025/03/18/trump-fires-ftc-commissioners-setting-up-a-legal-battle/",
            "author": "Kyle Wiggers",
            "timeAgo": "15 hours ago",
            "category": "In Brief",
            "image": "https://techcrunch.com/wp-content/uploads/2021/07/GettyImages-1327493808.jpg"
          },
          {
            "title": "NASA astronauts return from long Space Station stay prompted by Boeing problems",
            "url": "https://techcrunch.com/2025/03/18/nasa-astronauts-return-from-long-space-station-stay-prompted-by-boeing-problems/",
            "author": "Sean O'Kane",
            "timeAgo": "16 hours ago",
            "category": "Space",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/crew-9-return.jpg"
          },
          {
            "title": "Nvidia and Google DeepMind will help power Disney’s cute robots",
            "url": "https://techcrunch.com/2025/03/18/nvidia-and-google-deepmind-will-help-power-disneys-cute-robots/",
            "author": "Maxwell Zeff",
            "timeAgo": "16 hours ago",
            "category": "Robotics",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205761750.jpg"
          },
          {
            "title": "J. D. Vance claims freeing AI from regulation is good for American workers and tech innovators",
            "url": "https://techcrunch.com/2025/03/18/jd-vance-claims-freeing-ai-from-regulation-is-good-for-american-workers-and-tech-innovators/",
            "author": "Marina Temkin",
            "timeAgo": "16 hours ago",
            "category": "Government & Policy",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2205707549.jpg"
          },
          {
            "title": "Elon Musk’s DOGE leadership likely violates Constitution’s appointments clause, judge says",
            "url": "https://techcrunch.com/2025/03/18/elon-musks-doge-leadership-likely-violates-constitutions-appointments-clause-judge-says/",
            "author": "Sean O'Kane",
            "timeAgo": "16 hours ago",
            "category": "Government & Policy",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2198970101.jpg"
          },
          {
            "title": "New $5M deep tech fund aims to lure founders from universities",
            "url": "https://techcrunch.com/2025/03/18/new-5m-deep-tech-fund-aims-to-lure-founders-from-universities/",
            "author": "Tim De Chant",
            "timeAgo": "16 hours ago",
            "category": "Venture",
            "image": "https://techcrunch.com/wp-content/uploads/2023/03/GettyImages-693635157.jpg"
          },
          {
            "title": "What Tesla can and can’t do in California with its new passenger transportation permit",
            "url": "https://techcrunch.com/2025/03/18/what-tesla-can-and-cant-do-in-california-with-its-new-passenger-transportation-permit/",
            "author": "Kirsten Korosec",
            "timeAgo": "17 hours ago",
            "category": "Transportation",
            "image": "https://techcrunch.com/wp-content/uploads/2021/08/GettyImages-1232815520.jpg"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Apple news and analysis | TechCrunch",
        "description": "Read the latest news and analysis about Apple—including its software, hardware, the Vision Pro, and the anticipated introduction of AI—on TechCrunch.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Apple news and analysis | TechCrunch",
        "ogDescription": "Read the latest news and analysis about Apple—including its software, hardware, the Vision Pro, and the anticipated introduction of AI—on TechCrunch.",
        "ogUrl": "https://techcrunch.com/tag/apple/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2022/09/AppleEvent.SEP07Keynote.Tim_Cook.02.jpg?resize=1200,675",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "a9b4e087-f2ad-4c73-8eaa-86c6864e7197",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Apple news and analysis | TechCrunch",
        "og:description": "Read the latest news and analysis about Apple—including its software, hardware, the Vision Pro, and the anticipated introduction of AI—on TechCrunch.",
        "og:url": "https://techcrunch.com/tag/apple/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2022/09/AppleEvent.SEP07Keynote.Tim_Cook.02.jpg?resize=1200,675",
        "og:image:width": "1200",
        "og:image:height": "675",
        "og:image:type": "image/jpeg",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Tag",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/tag/apple/",
        "url": "https://techcrunch.com/tag/apple/",
        "statusCode": 200
      },
      "json": {
        "news": [
          {
            "title": "Apple reportedly considered building the iPhone 17 Air without ports",
            "author": "Anthony Ha",
            "date": "2025-03-16",
            "url": "https://techcrunch.com/2025/03/16/apple-reportedly-considered-building-the-iphone-17-air-without-ports/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/iphone-usb-lighting-charging-cable.jpg",
            "category": "In Brief"
          },
          {
            "title": "iPhone and Android users will soon be able to send encrypted RCS messages to each other",
            "author": "Paul Sawers",
            "date": "2025-03-14",
            "url": "https://techcrunch.com/2025/03/14/iphone-and-android-users-will-soon-be-able-to-send-encrypted-rcs-messages-to-each-other/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1831275897.jpg",
            "category": "Privacy"
          },
          {
            "title": "US lawmakers urge UK spy court to hold Apple ‘backdoor’ secret hearing in public",
            "author": "Zack Whittaker",
            "date": "2025-03-14",
            "url": "https://techcrunch.com/2025/03/14/us-lawmakers-urge-uk-spy-court-to-hold-apple-backdoor-secret-hearing-in-public/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/icloud-pattern-with-key-red.jpg",
            "category": "Security"
          },
          {
            "title": "Apple’s Lockdown Mode is good for security — but its notifications are baffling",
            "author": "Lorenzo Franceschi-Bicchierai",
            "date": "2025-03-13",
            "url": "https://techcrunch.com/2025/03/13/apples-lockdown-mode-is-good-for-security-but-its-notifications-are-baffling/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/apple-ios-lockdown-mode-2024-emoji-1.jpg",
            "category": "Featured"
          },
          {
            "title": "UK competition probe of mobile browsers finds Apple-Google duopoly is ‘anti-innovation’",
            "author": "Natasha Lomas",
            "date": "2025-03-12",
            "url": "https://techcrunch.com/2025/03/12/uk-competition-probe-of-mobile-browsers-finds-apple-google-duopoly-is-anti-innovation/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/11/GettyImages-1237753209.jpg",
            "category": "Government & Policy"
          },
          {
            "title": "Apple fixes new security flaw used in ‘extremely sophisticated attack’",
            "author": "Lorenzo Franceschi-Bicchierai",
            "date": "2025-03-11",
            "url": "https://techcrunch.com/2025/03/11/apple-fixes-new-security-flaw-used-in-extremely-sophisticated-attack/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/11/GettyImages-1237753209.jpg",
            "category": "In Brief"
          },
          {
            "title": "Apple’s next major OS updates will bring the biggest design overhaul in years",
            "author": "Ivan Mehta",
            "date": "2025-03-11",
            "url": "https://techcrunch.com/2025/03/11/apples-next-major-os-updates-will-bring-the-biggest-design-overhaul-in-years/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Apple-logo-Getty.jpg",
            "category": "In Brief"
          },
          {
            "title": "Apple’s smart home hub reportedly delayed by Siri challenges",
            "author": "Anthony Ha",
            "date": "2025-03-09",
            "url": "https://techcrunch.com/2025/03/09/apples-smart-home-hub-reportedly-delayed-by-siri-challenges/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/apple-intelligence-iphone-mac.jpg",
            "category": "In Brief"
          },
          {
            "title": "AI-powered ‘more personalized Siri’ is delayed",
            "author": "Sarah Perez",
            "date": "2025-03-07",
            "url": "https://techcrunch.com/2025/03/07/ai-powered-more-personalized-siri-is-delayed/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/09/CMC_7975.jpg",
            "category": "AI"
          },
          {
            "title": "UK quietly scrubs encryption advice from government websites",
            "author": "Carly Page",
            "date": "2025-03-06",
            "url": "https://techcrunch.com/2025/03/06/uk-quietly-scrubs-encryption-advice-from-government-websites/",
            "image": "https://techcrunch.com/wp-content/uploads/2021/12/apple-csam-encrypted.jpg",
            "category": "Security"
          },
          {
            "title": "Apple adds AI-powered app review summaries with iOS 18.4",
            "author": "Sarah Perez",
            "date": "2025-03-05",
            "url": "https://techcrunch.com/2025/03/05/apple-adds-ai-powered-app-review-summaries-with-ios-18-4/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/01/app-store-2024-v2.jpg",
            "category": "AI"
          },
          {
            "title": "Apple updates the Mac Studio with M4 Max and M3 Ultra options",
            "author": "Romain Dillet",
            "date": "2025-03-05",
            "url": "https://techcrunch.com/2025/03/05/apple-updates-the-new-mac-studio-with-m4-max-or-m3-ultra/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Apple-Mac-Studio-lifestyle-250305.jpg",
            "category": "Gadgets"
          },
          {
            "title": "Apple launches new MacBook Air with M4 chip",
            "author": "Romain Dillet",
            "date": "2025-03-05",
            "url": "https://techcrunch.com/2025/03/05/apple-launches-a-new-macbook-air-with-m4-chip/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Apple-MacBook-Air-lifestyle-on-the-go-250305.jpg",
            "category": "Gadgets"
          },
          {
            "title": "Apple launches a new iPad Air with M3 chip",
            "author": "Aisha Malik",
            "date": "2025-03-04",
            "url": "https://techcrunch.com/2025/03/04/apple-launches-a-new-ipad-air-with-m3-chip/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/apple-ipad-air-m3.jpg",
            "category": "Hardware"
          },
          {
            "title": "As Skype shuts down, its legacy is end-to-end encryption for the masses",
            "author": "Lorenzo Franceschi-Bicchierai",
            "date": "2025-03-03",
            "url": "https://techcrunch.com/2025/03/03/as-skype-shuts-down-its-legacy-is-end-to-end-encryption-for-the-masses/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/skype-mwc-2015-logo.jpg",
            "category": "Security"
          },
          {
            "title": "Apple might not release a truly ‘modernized’ Siri until 2027",
            "author": "Anthony Ha",
            "date": "2025-03-02",
            "url": "https://techcrunch.com/2025/03/02/apple-might-not-release-a-truly-modernized-siri-until-2027/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/email-1296170308.jpg",
            "category": "In Brief"
          },
          {
            "title": "How to get rid of the new Apple Mail redesign",
            "author": "Amanda Silberling",
            "date": "2025-03-01",
            "url": "https://techcrunch.com/2025/03/01/how-to-get-rid-of-the-new-apple-mail-redesign/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/green-eyes-red-moshed.jpg",
            "category": "Apps"
          },
          {
            "title": "Spyzie stalkerware is spying on thousands of Android and iPhone users",
            "author": "Zack Whittaker",
            "date": "2025-02-27",
            "url": "https://techcrunch.com/2025/02/27/spyzie-stalkerware-spying-on-thousands-of-android-and-iphone-users/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/green-eyes-red-moshed.jpg",
            "category": "Security"
          },
          {
            "title": "Apple introduces new child safety initiatives, including an age-checking system for apps",
            "author": "Sarah Perez",
            "date": "2025-02-27",
            "url": "https://techcrunch.com/2025/02/27/apple-introduces-new-child-safety-initiatives-including-an-age-checking-system-for-apps/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/kid-tablet-GettyImages-135280997.jpg",
            "category": "Apps"
          },
          {
            "title": "Apple iPhone 16e review: An A18 chip and Apple Intelligence for $599",
            "author": "Brian Heater",
            "date": "2025-02-26",
            "url": "https://techcrunch.com/2025/02/26/apple-iphone-16e-review-an-a18-chip-and-apple-intelligence-for-599/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Apple-iphone-16.jpg",
            "category": "Gadgets"
          },
          {
            "title": "Indonesia, Apple reach agreement to end iPhone 16 sales ban",
            "author": "Kate Park",
            "date": "2025-02-26",
            "url": "https://techcrunch.com/2025/02/26/indonesia-apple-reach-agreement-to-end-iphone-16-sales-ban/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Apple-logo-Getty.jpg",
            "category": "Government & Policy"
          },
          {
            "title": "Apple shareholders vote down anti-DEI proposal",
            "author": "Dominic-Madori Davis",
            "date": "2025-02-25",
            "url": "https://techcrunch.com/2025/02/25/apple-shareholders-vote-down-anti-dei-proposal/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2188459297.jpg",
            "category": "In Brief"
          },
          {
            "title": "Apple’s Developer service comes to China’s WeChat",
            "author": "Sarah Perez",
            "date": "2025-02-25",
            "url": "https://techcrunch.com/2025/02/25/apples-developer-service-comes-to-chinas-wechat/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/email-1296170308.jpg",
            "category": "In Brief"
          },
          {
            "title": "Apple Watch shipments surge in India",
            "author": "Jagmeet Singh",
            "date": "2025-02-25",
            "url": "https://techcrunch.com/2025/02/25/apple-watch-shipments-surge-in-india/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/apple-watch-series-10-getty.jpg",
            "category": "Hardware"
          },
          {
            "title": "Apple exec Phil Schiller testifies that he raised concerns over App Store commissions on web-based sales",
            "author": "Sarah Perez",
            "date": "2025-02-24",
            "url": "https://techcrunch.com/2025/02/24/apple-exec-phil-schiller-testifies-that-he-raised-concerns-over-app-store-commissions-on-web-based-sales/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Apple-logo-Getty.jpg",
            "category": "Apps"
          },
          {
            "title": "Apple commits $500B to US manufacturing, including a new AI server facility in Houston",
            "author": "Ingrid Lunden",
            "date": "2025-02-24",
            "url": "https://techcrunch.com/2025/02/24/apple-commits-500b-to-us-manufacturing-including-a-new-ai-server-facility-in-houston/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/apple-factory.jpg",
            "category": "Government & Policy"
          },
          {
            "title": "Explore the online world of Apple TV’s ‘Severance’",
            "author": "Sarah Perez",
            "date": "2025-02-22",
            "url": "https://techcrunch.com/2025/02/22/explore-the-online-world-of-apple-tvs-severance/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/email-1296170308.jpg",
            "category": "Media & Entertainment"
          },
          {
            "title": "iOS 18.4 will bring Apple Intelligence-powered ‘Priority Notifications’",
            "author": "Aisha Malik",
            "date": "2025-02-21",
            "url": "https://techcrunch.com/2025/02/21/ios-18-4-will-bring-apple-intelligence-powered-priority-notifications/",
            "image": "https://techcrunch.com/wp-content/uploads/2024/09/apple-iphone-16-v3.jpg",
            "category": "Apps"
          },
          {
            "title": "Apple takes on recipe apps with Apple News+ Food",
            "author": "Sarah Perez",
            "date": "2025-02-21",
            "url": "https://techcrunch.com/2025/02/21/apple-takes-on-recipe-apps-with-apple-news-food/",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/cooking-at-home-GettyImages-1954794693.jpg",
            "category": "Apps"
          },
          {
            "title": "The Vision Pro is getting Apple Intelligence in April",
            "author": "Brian Heater",
            "date": "2025-02-21",
            "url": "https://techcrunch.com/2025/02/21/the-vision-pro-is-getting-apple-intelligence-in-april/",
            "image": "https://techcrunch.com/wp-content/uploads/2023/06/Vision-Pro-IMG-3.jpeg",
            "category": "Apps"
          }
        ]
      }
    },
    {
      "metadata": {
        "title": "Startups | TechCrunch",
        "description": "Read more about tech startup news that breaks down funding, growth, and long-term trajectory of companies across every stage and industry.",
        "favicon": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=32",
        "language": "en-US",
        "robots": "index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1",
        "ogTitle": "Startups | TechCrunch",
        "ogDescription": "Read more about tech startup news that breaks down funding, growth, and long-term trajectory of companies across every stage and industry.",
        "ogUrl": "https://techcrunch.com/category/startups/",
        "ogImage": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "ogLocale": "en_US",
        "ogLocaleAlternate": [],
        "ogSiteName": "TechCrunch",
        "scrapeId": "457d60ac-ebc8-4e82-8a7d-17f3697d6ce2",
        "viewport": "width=device-width, initial-scale=1",
        "oath:guce:consent-host": "guce.techcrunch.com",
        "og:locale": "en_US",
        "og:type": "article",
        "og:title": "Startups | TechCrunch",
        "og:description": "Read more about tech startup news that breaks down funding, growth, and long-term trajectory of companies across every stage and industry.",
        "og:url": "https://techcrunch.com/category/startups/",
        "og:site_name": "TechCrunch",
        "og:image": "https://techcrunch.com/wp-content/uploads/2018/04/tc-logo-2018-square-reverse2x.png?resize=1200,1200",
        "og:image:width": "1200",
        "og:image:height": "1200",
        "og:image:type": "image/png",
        "twitter:card": "summary_large_image",
        "twitter:site": "",
        "generator": "WordPress 6.7.2",
        "mrf:tags": "Page Type:Archive;Archive Type:Category",
        "msapplication-TileImage": "https://techcrunch.com/wp-content/uploads/2015/02/cropped-cropped-favicon-gradient.png?w=270",
        "sourceURL": "https://techcrunch.com/category/startups/",
        "url": "https://techcrunch.com/category/startups/",
        "statusCode": 200
      },
      "json": {
        "news": [
          {
            "title": "Let your voice be heard! Vote for who you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/19/let-your-voice-be-heard-vote-for-who-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": "TechCrunch Events",
            "time_ago": "38 minutes ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TechCrunch-Sessions-AI-Audience-Choice-Finalists.png",
            "category": "TC Sessions: AI"
          },
          {
            "title": "Prezent raises $20M to build AI for slide decks",
            "url": "https://techcrunch.com/2025/03/19/prezent-raises-20m-to-build-ai-for-slide-decks/",
            "author": "Jagmeet Singh",
            "time_ago": "4 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/presentation-getty.jpg",
            "category": "AI"
          },
          {
            "title": "Aletiq secures $6.5M for its SaaS tool focused on product lifecycle management",
            "url": "https://techcrunch.com/2025/03/19/aletiq-secures-65m-for-its-saas-tool-focused-on-product-lifecycle-management/",
            "author": "Romain Dillet",
            "time_ago": "4 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1438543676.jpg",
            "category": "Enterprise"
          },
          {
            "title": "Factorial, a HR unicorn, snaps up $120M from General Catalyst to boost sales and marketing",
            "url": "https://techcrunch.com/2025/03/19/factorial-snaps-up-120m-from-general-catalyst-to-boost-its-hr-sales-and-marketing/",
            "author": "Ingrid Lunden",
            "time_ago": "6 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2019/11/GettyImages-1084168924-1.jpg",
            "category": "Fundraising"
          },
          {
            "title": "A comprehensive list of 2025 tech layoffs",
            "url": "https://techcrunch.com/2025/03/19/tech-layoffs-2025-list/",
            "author": "Cody Corrall, Alyssa Stringer",
            "time_ago": "7 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/02/layoffs-e1684946575831.jpg",
            "category": "Startups"
          },
          {
            "title": "Bolt’s former CEO is launching a new e-commerce startup",
            "url": "https://techcrunch.com/2025/03/18/bolts-former-ceo-is-launching-a-new-e-commerce-startup/",
            "author": "Charles Rollet",
            "time_ago": "20 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/IMG_3774-1.jpg",
            "category": "Startups"
          },
          {
            "title": "Anthropic-backed AI-powered code review platform Graphite raises cash",
            "url": "https://techcrunch.com/2025/03/18/anthropic-backed-ai-powered-code-review-platform-graphite-raises-cash/",
            "author": "Kyle Wiggers",
            "time_ago": "24 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/06/GettyImages-1388336038.jpg",
            "category": "Fundraising"
          },
          {
            "title": "Arcade raises $12M from Perplexity co-founder’s new fund to make AI agents less awful",
            "url": "https://techcrunch.com/2025/03/18/arcade-raises-12m-from-perplexity-co-founders-new-fund-to-make-ai-agents-less-awful/",
            "author": "Julie Bort",
            "time_ago": "24 hours ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Arcade-Alex-and-Sam-e1742244609355.jpg?w=564",
            "category": "Startups"
          },
          {
            "title": "Make your choice! Vote for the speaker you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/18/make-your-choice-vote-for-the-speaker-you-want-to-see-at-techcrunch-sessions-ai/",
            "author": "TechCrunch Events",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/Early-Stage-Roundtable-Sessions-2.jpg",
            "category": "TC Sessions: AI"
          },
          {
            "title": "Exist is a new social wellness app that wants to help middle-age users find community",
            "url": "https://techcrunch.com/2025/03/18/exist-is-a-new-social-wellness-app-that-wants-to-help-middle-age-users-find-community/",
            "author": "Aisha Malik",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-1781831164.jpg",
            "category": "Apps"
          },
          {
            "title": "TurinTech reveals $20M in backing to fix problems in ‘vibe coding’",
            "url": "https://techcrunch.com/2025/03/18/turintech-reveals-20m-in-backing-to-fix-problems-in-vibe-coding/",
            "author": "Mike Butcher",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/10/GettyImages-1443890653.jpg",
            "category": "Fundraising"
          },
          {
            "title": "YC-backed food supply startup Vendease restructures employees’ salaries",
            "url": "https://techcrunch.com/2025/03/18/vendease-restructures-employees-salaries/",
            "author": "Tage Kene-Okafor",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2022/09/CDC59DDA-6EEF-4511-BC1C-27FF12891833.jpeg",
            "category": "Startups"
          },
          {
            "title": "GrubMarket raises $50M at $3.5B+ valuation to build AI for the $1 trillion food-distribution industry",
            "url": "https://techcrunch.com/2025/03/18/grubmarket-raises-50m-at-a-3-5b-valuation-to-build-ai-for-the-1-trillion-food-distribution-industry/",
            "author": "Ingrid Lunden",
            "time_ago": "1 day ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Mike-Xu-Photo-6.jpg",
            "category": "Fundraising"
          },
          {
            "title": "Google revives talks to acquire Wiz at higher valuation",
            "url": "https://techcrunch.com/2025/03/17/google-revives-talks-to-acquire-wiz-at-higher-valuation/",
            "author": "Marina Temkin, Ingrid Lunden",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/05/Wiz-Founders.-Credit-Avishag-Shaar-Yashuv-e1729698030129.webp",
            "category": "Enterprise"
          },
          {
            "title": "Rippling sues Deel, Deel denies ‘all legal wrongdoing,’ and Slack is the main witness",
            "url": "https://techcrunch.com/2025/03/17/rippling-sues-deel-deel-denies-all-legal-wrongdoing-and-slack-is-the-main-witness/",
            "author": "Ingrid Lunden",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2021/04/GettyImages-83803495.jpg",
            "category": "Enterprise"
          },
          {
            "title": "These fintech companies are hiring in 2025 after a turbulent year",
            "url": "https://techcrunch.com/2025/03/17/these-fintech-companies-are-hiring-in-2025-after-a-turbulent-year/",
            "author": "Mary Ann Azevedo",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2016/08/hiring.jpg",
            "category": "Fintech"
          },
          {
            "title": "Flexport accuses former employees of stealing its source code to create a rival startup",
            "url": "https://techcrunch.com/2025/03/17/flexport-accuses-former-employees-of-stealing-its-source-code-to-create-a-rival-startup/",
            "author": "Charles Rollet",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-655147030.jpg",
            "category": "Startups"
          },
          {
            "title": "YC-backed ReactWise is applying AI to speed up drug manufacturing",
            "url": "https://techcrunch.com/2025/03/17/yc-backed-reactwise-is-applying-ai-to-speed-up-drug-manufacturing/",
            "author": "Natasha Lomas",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/Fundraising-announcement-picture-1.jpg",
            "category": "AI"
          },
          {
            "title": "Vote for the session you want to see at TechCrunch Sessions: AI",
            "url": "https://techcrunch.com/2025/03/17/vote-for-the-session-you-want-to-see-at-techcrunch-session-ai/",
            "author": "TechCrunch Events",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/TechCrunch-Sessions-AI-Audience-Choice-Finalists.png",
            "category": "TC Sessions: AI"
          },
          {
            "title": "TechCrunch All Stage unveils a powerhouse agenda for founders",
            "url": "https://techcrunch.com/2025/03/17/techcrunch-all-stage-unveils-a-powerhouse-agenda-for-founders/",
            "author": "TechCrunch Events",
            "time_ago": "2 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/04/53679979052_da1066fe91_o.jpg",
            "category": "TechCrunch All Stage 2025"
          },
          {
            "title": "Nvidia’s AI empire: A look at its top startup investments",
            "url": "https://techcrunch.com/2025/03/16/nvidias-ai-empire-a-look-at-its-top-startup-investments/",
            "author": "Marina Temkin",
            "time_ago": "3 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/11/GettyImages-2183848501.jpg",
            "category": "AI"
          },
          {
            "title": "Bench is charging people for services they already paid for, some customers say",
            "url": "https://techcrunch.com/2025/03/14/bench-is-charging-people-for-services-they-already-paid-for-some-customers-say/",
            "author": "Charles Rollet",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2024/12/64c087002b95cbe3c8a62bd4_benchco_thumbnail_image.jpg",
            "category": "Startups"
          },
          {
            "title": "Profitable Klarna files for a potentially blockbuster IPO",
            "url": "https://techcrunch.com/2025/03/14/profitable-klarna-files-for-a-potentially-blockbuster-ipo/",
            "author": "Julie Bort",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2019/12/Sebastian-Siemiatkowski-Klarna-DSC09671.jpg",
            "category": "Startups"
          },
          {
            "title": "Tern AI’s low-cost GPS alternative actually works",
            "url": "https://techcrunch.com/2025/03/14/tern-ais-low-cost-gps-alternative-actually-works/",
            "author": "Rebecca Bellan",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/From_To_With_Logo.jpeg",
            "category": "Transportation"
          },
          {
            "title": "China is reportedly keeping DeepSeek under close watch",
            "url": "https://techcrunch.com/2025/03/14/china-is-reportedly-keeping-deepseek-under-close-watch/",
            "author": "Rebecca Szkutak",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/01/GettyImages-2196333417_75e106.jpg",
            "category": "In Brief"
          },
          {
            "title": "Startups Weekly: Founders may be raising less, but deals haven’t been lacking",
            "url": "https://techcrunch.com/2025/03/14/startups-weekly-founders-may-be-raising-less-but-deals-havent-been-lacking/",
            "author": "Anna Heim",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2023/06/GettyImages-1139090560.jpg",
            "category": "Startups"
          },
          {
            "title": "OpenAI and Microsoft’s ‘frenemies relationship,’ and what you missed at SXSW",
            "url": "https://techcrunch.com/podcast/openai-and-microsofts-frenemies-relationship-and-what-you-missed-at-sxsw/",
            "author": "Theresa Loconsolo, Maxwell Zeff, Anthony Ha, Kirsten Korosec, Rebecca Bellan",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/02/GettyImages-2197091379.jpg",
            "category": "Startups"
          },
          {
            "title": "Kerry Washington invests in wedding marketplace Cheersy",
            "url": "https://techcrunch.com/2025/03/14/kerry-washington-invests-in-wedding-marketplace-cheersy/",
            "author": "Dominic-Madori Davis",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GettyImages-2200409776.jpg",
            "category": "Startups"
          },
          {
            "title": "Sesame, the startup behind the viral virtual assistant Maya, releases its base AI model",
            "url": "https://techcrunch.com/2025/03/13/sesame-the-startup-behind-the-viral-virtual-assistant-maya-releases-its-base-ai-model/",
            "author": "Kyle Wiggers",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2019/03/podcast-mic-orange.jpg",
            "category": "AI"
          },
          {
            "title": "Y Combinator’s police surveillance darling Flock Safety raises $275M at $7.5B valuation",
            "url": "https://techcrunch.com/2025/03/13/y-combinators-police-surveillance-darling-flock-safety-raises-275m-at-7-5b-valuation/",
            "author": "Julie Bort",
            "time_ago": "5 days ago",
            "image": "https://techcrunch.com/wp-content/uploads/2025/03/GarrettLangley_Founder_CEO.jpg",
            "category": "Startups"
          }
        ]
      }
    }
  ]
}
kcharvi commented 3 weeks ago

priyaadak254 commented on 2025-03-20T07:57:19+00:00 (Original):

Error is not consistent. For some website it fetched the result but for some website it is not. Can I connect with you via any meeting ?

kcharvi commented 3 weeks ago

ftonato commented on 2025-03-20T16:32:10+00:00 (Original):

Let’s continue handling this through the issue for now. Could you please provide REAL specific examples (e.g., URLs, prompt and the other params) so we can investigate further? If you have an active subscription, you can also contact us through our official support channels and we’ll prioritize your request accordingly

kcharvi commented 3 weeks ago

priyaadak254 commented on 2025-03-21T06:53:41+00:00 (Original):

I am sending a mail on help.com. Please take it as priority. If is there any other channel to communicate then let me know. I am a active member of firecrawl . I sent my subscription detail via mail.

for you debugging purpose I am sending you some references (urls and prompts):

https://visa.vfsglobal.com/one-pager/southafrica/india/english/ https://www.cgidurban.gov.in/page/visa-services/ https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals https://hcikl.gov.in/Exlinks/Visa-Services https://www.govt.nz/browse/immigration-and-visas/get-a-new-zealand-student-visa/before-you-apply-for-a-student-visa/ https://www.gov.uk/standard-visitor/visit-for-medical-reasons

Prompt used: Extract Visa requirements for India traveling to {destination_country} for 45 days starting 18-03-2025 for study, and i have some medical condition with the following details: eligibility criteria, where and how to apply for a visa, documents needed to apply for visa, travel information, fees, processing fee, processing time, visa is needed or not, the time taken for whole process, refusal, annulment and revocation of a visa, entry check, extending the visa's validity and important links.

{destination_country}: Newzeland , England, South Africa etc. what ever Country I will search for that country will be set there

kcharvi commented 3 weeks ago

ftonato commented on 2025-03-21T14:32:02+00:00 (Original):

Hello ,

I’ve run a couple of tests (see below) using the real data you provided and, in every case, the API returned the expected information. Based on these results, it appears that the issue might not be a bug in the API itself, but rather related to how the prompts are being constructed.

Please note that when prompts are very long or include too many details at once, LLMs can become confused and may not return the exact data you’re looking for. A useful strategy is to break large queries into smaller, more focused prompts. For example:

  1. First prompt: “Find the list of documents required to obtain a visa for COUNTRY.”
  2. Second prompt: “Extract how long I can stay in COUNTRY with VISA-NAME.”

By approaching the problem step by step, you’ll likely see more accurate, consistent results.

At this point, I don’t see any outstanding bug on our side.

Please find below the tests I conducted:

[Test] UK **Code:** ```typescript import Firecrawl from "/firecrawl-js"; const firecrawl = new Firecrawl({ apiKey: process.env.FIRECRAWL_API_KEY, }); const url = "https://www.gov.uk/standard-visitor/visit-for-medical-reasons"; const body = { scrapeOptions: { formats: ["json"], jsonOptions: { prompt: "Extract Visa requirements for India traveling to England for 45 days starting 18-03-2025 for study, and i have some medical condition with the following details: eligibility criteria, where and how to apply for a visa, documents needed to apply for visa, travel information, fees, processing fee, processing time, visa is needed or not, the time taken for whole process, refusal, annulment and revocation of a visa, entry check, extending the visa's validity and important links", }, onlyMainContent: true, }, maxDepth: 5, limit: 15, ignoreSitemap: true, }; const data = await firecrawl.crawlUrl(url, body); console.log(JSON.stringify(data)); ``` **Response:** ```json { "success":true, "status":"completed", "completed":1, "total":1, "creditsUsed":1, "expiresAt":"2025-03-22T14:14:26.000Z", "data":[ { "json":{ "visa_requirements":{ "country":"India", "purpose":"study", "duration":"45 days", "start_date":"2025-03-18", "destination":"England", "entry_check":"Upon arrival, immigration will check visa validity and eligibility.", "visa_status":{ "refusal":"If the application does not meet eligibility criteria.", "annulment":"Visa can be annulled if conditions are violated.", "revocation":"Visa can be revoked if the holder poses a risk to public health." }, "important_links":{ "tb_test":"https://www.gov.uk/tb-test-visa", "apply_visa":"https://www.gov.uk/standard-visitor/apply-standard-visitor-visa", "check_visa":"https://www.gov.uk/check-uk-visa", "extend_stay":"https://www.gov.uk/standard-visitor/extend-your-stay" }, "documents_needed":[ { "type":"letter from a doctor or consultant", "details":[ "Confirms the medical condition that needs treatment.", "Estimates the cost and duration of treatment.", "Specifies where the treatment will take place." ] }, { "type":"authorisation form", "details":"Issued by the government of India for treatment at an NHS hospital." } ], "medical_condition":true, "travel_information":{ "fees":{ "visa_fee":"£200", "extension_fee":"£1,000" }, "visa_needed":true, "processing_fee":"Included in visa fee", "processing_time":"Varies, check the UK government website for current times.", "total_process_time":"Varies based on application and processing times." }, "application_process":{ "how_to_apply":"Complete the application form for a Standard Visitor visa.", "where_to_apply":"Online at the UK government website." }, "eligibility_criteria":[ "Must have a medical condition that needs consultation or treatment in the UK.", "Must have made arrangements for consultations or treatment.", "Must have enough money or funding to pay for treatment.", "Must leave the UK once treatment is completed or when the visa expires.", "Must not be a danger to public health." ], "extending_visa_validity":{ "cost":"£1,000 for each extension.", "process":"Apply to extend your stay while in the UK." } } }, "metadata":{ "url":"https://www.gov.uk/standard-visitor/visit-for-medical-reasons", "ogUrl":"https://www.gov.uk/standard-visitor/visit-for-medical-reasons", "title":"\n Visit the UK as a Standard Visitor: Visit for medical reasons - GOV.UK\n ", "og:url":"https://www.gov.uk/standard-visitor/visit-for-medical-reasons", "favicon":{ }, "og:type":"article", "ogImage":"https://www.gov.uk/assets/static/govuk-opengraph-image-03837e1cec82f217cf32514635a13c879b8c400ae3b1c207c5744411658c7635.png", "ogTitle":"Visit the UK as a Standard Visitor", "language":"en", "og:image":"https://www.gov.uk/assets/static/govuk-opengraph-image-03837e1cec82f217cf32514635a13c879b8c400ae3b1c207c5744411658c7635.png", "og:title":"Visit the UK as a Standard Visitor", "scrapeId":"78994bd1-9877-4a01-97a8-e0c22fafc603", "viewport":"width=device-width, initial-scale=1", "sourceURL":"https://www.gov.uk/standard-visitor/visit-for-medical-reasons", "ogSiteName":"GOV.UK", "statusCode":200, "description":"Visit the UK as a Standard Visitor for tourism, business, study (courses up to 6 months), medical treatment and other activities. Find out whether you need a Standard Visitor visa, or can visit without a visa. ", "theme-color":"#0b0c0c", "govuk:format":"guide", "og:site_name":"GOV.UK", "twitter:card":"summary", "ogDescription":"Visit the UK as a Standard Visitor for tourism, business, study (courses up to 6 months), medical treatment and other activities. Find out whether you need a Standard Visitor visa, or can visit without a visa. ", "govuk:taxon-id":"a544d48b-1e9e-47fb-b427-7a987c658c14", "og:description":"Visit the UK as a Standard Visitor for tourism, business, study (courses up to 6 months), medical treatment and other activities. Find out whether you need a Standard Visitor visa, or can visit without a visa. ", "govuk:taxon-ids":"a544d48b-1e9e-47fb-b427-7a987c658c14,64f089a8-e342-4a93-9a90-db999bb94719", "govuk:content-id":"e1067450-7d13-45ff-ada4-5e3dd4025fb7", "govuk:taxon-slug":"corporate-information", "govuk:updated-at":"2025-03-17T17:52:14+00:00", "govuk:schema-name":"guide", "govuk:taxon-slugs":"corporate-information,visit-and-transit-visas", "govuk:organisations":"", "govuk:rendering-app":"government-frontend", "govuk:publishing-app":"publisher", "govuk:taxonomy_level1":"corporate-information, entering-staying-uk", "govuk:ga4-browse-topic":"visas and immigration", "govuk:public-updated-at":"2024-10-31T17:00:17+00:00", "govuk:first-published-at":"2015-04-24T01:01:08+01:00", "govuk:rendering-application":"government-frontend", "govuk:components_gem_version":"55.1.0", "govuk:primary-publishing-organisation":"Government Digital Service" } } ] } ```
[Test] New Zealand **Code:** ```typescript import Firecrawl from "/firecrawl-js"; const firecrawl = new Firecrawl({ apiKey: process.env.FIRECRAWL_API_KEY, }); const url = "https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals"; const body = { scrapeOptions: { formats: ["json"], jsonOptions: { prompt: "Extract Visa requirements for India traveling to New Zealand for 45 days starting 18-03-2025 for study, and i have some medical condition with the following details: eligibility criteria, where and how to apply for a visa, documents needed to apply for visa, travel information, fees, processing fee, processing time, visa is needed or not, the time taken for whole process, refusal, annulment and revocation of a visa, entry check, extending the visa's validity and important links", }, onlyMainContent: true, }, maxDepth: 5, limit: 15, ignoreSitemap: true, }; const data = await firecrawl.crawlUrl(url, body); console.log(JSON.stringify(data)); ``` **Response:** ```json { "success":true, "status":"completed", "completed":1, "total":1, "creditsUsed":1, "expiresAt":"2025-03-22T14:18:34.000Z", "data":[ { "json":{ "visa_requirements":{ "start_date":"2025-03-18", "important_links":{ "health_criteria":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals", "application_forms":"https://www.immigration.govt.nz/formshelp/applications-affected-by-this-upgrade", "medical_examination_info":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/evidence-you-in-good-health" }, "duration_of_stay":"45 days", "purpose_of_visit":"study", "country_of_origin":"India", "medical_condition":true, "travel_information":{ "fees":{ "visa_fee":"NZD 330", "processing_fee":"Included in visa fee" }, "entry_check":"Health checks may be required upon entry", "visa_needed":true, "refusal_policy":"Visa applications may be declined based on health assessments or incomplete documentation", "processing_time":"Up to 20 working days", "total_process_time":"Varies based on application completeness and health assessments", "extending_visa_validity":"Extensions can be applied for before the current visa expires", "annulment_and_revocation":"Visas can be revoked if conditions are not met or if false information is provided" }, "application_process":{ "how_to_apply":"Complete the visa application form and submit required documents", "where_to_apply":"Online through the New Zealand immigration website", "documents_needed":[ "Valid passport", "Proof of enrollment in a New Zealand educational institution", "Medical examination results", "Financial proof", "Travel itinerary" ] }, "destination_country":"New Zealand", "eligibility_criteria":{ "health_requirements":[ "Risk to public health", "Significant cost to New Zealand's health services", "Qualifying for Ongoing Resourcing Scheme (ORS) funding", "Health may stop working or studying" ], "conditions_for_decline":[ "Hospitalisation needs", "Residential care needs", "High-cost pharmaceuticals", "Severe developmental or cognitive conditions" ] } } }, "metadata":{ "url":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals", "ogUrl":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals", "title":"Acceptable standard of health criteria for visa approvals | Immigration New Zealand", "og:url":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals", "favicon":{ }, "og:type":"website", "ogImage":"https://www.immigration.govt.nz/%2B%2Bresource%2B%2Binz.static.54/images/logo_social.png", "ogTitle":"Acceptable standard of health criteria for visa approvals", "language":"en", "og:image":"https://www.immigration.govt.nz/%2B%2Bresource%2B%2Binz.static.54/images/logo_social.png", "og:title":"Acceptable standard of health criteria for visa approvals", "scrapeId":"4e4db4dd-24f8-4d09-a575-41999ebefec9", "viewport":"width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=0", "sourceURL":"https://www.immigration.govt.nz/new-zealand-visas/preparing-a-visa-application/medical-info/acceptable-standard-of-health-criteria-for-visa-approvals", "ogSiteName":"Immigration New Zealand", "statusCode":200, "description":"How we use the acceptable standard of health criteria when assessing applications for a residence visa or a temporary visa to visit, work or study.", "og:site_name":"Immigration New Zealand", "og:image:type":"image/png", "ogDescription":"How we use the acceptable standard of health criteria when assessing applications for a residence visa or a temporary visa to visit, work or study.", "og:description":"How we use the acceptable standard of health criteria when assessing applications for a residence visa or a temporary visa to visit, work or study.", "og:image:width":"1200", "og:image:height":"1200", "application-name":"Immigration New Zealand", "msapplication-tooltip":"Immigration New Zealand", "msapplication-TileColor":"#ffffff", "msapplication-TileImage":"https://www.immigration.govt.nz/++resource++inz.static.54/icons/mstile-144x144.png", "apple-mobile-web-app-title":"Immigration New Zealand" } } ] } ```
[Test] South Africa **Code:** ```typescript import Firecrawl from "/firecrawl-js"; const firecrawl = new Firecrawl({ apiKey: process.env.FIRECRAWL_API_KEY, }); const url = "https://visa.vfsglobal.com/one-pager/southafrica/india/english"; const body = { scrapeOptions: { formats: ["json"], jsonOptions: { prompt: "Extract Visa requirements for India traveling to South Africa for 45 days starting 18-03-2025 for study, and i have some medical condition with the following details: eligibility criteria, where and how to apply for a visa, documents needed to apply for visa, travel information, fees, processing fee, processing time, visa is needed or not, the time taken for whole process, refusal, annulment and revocation of a visa, entry check, extending the visa's validity and important links", }, onlyMainContent: true, }, maxDepth: 5, limit: 15, ignoreSitemap: true, }; const data = await firecrawl.crawlUrl(url, body); console.log(JSON.stringify(data)); ``` **Response:** ```json { "success":true, "status":"completed", "completed":1, "total":1, "creditsUsed":1, "expiresAt":"2025-03-22T14:21:14.000Z", "data":[ { "json":{ "visa_requirements":{ "fees":{ "visa_fee":{ "Indian_nationals":"INR 1944", "foreign_nationals":"INR 1944" }, "logistic_fee":{ "Goa":"INR 2301", "Pune":"INR 2301", "Delhi":"INR 2040", "Jaipur":"INR 2301", "Mumbai":"INR 2040", "Gurgaon":"INR 2301", "Kolkata":"INR 2301", "Ahmedabad":"INR 2301", "Bangalore":"INR 2301" }, "processing_fee":"Included in visa fee" }, "country":"South Africa", "purpose":"Study", "duration":"45 days", "start_date":"2025-03-18", "entry_check":"Entry will be checked at the port of entry.", "nationality":"India", "visa_required":true, "refusal_policy":"Applications may be refused if documentation is incomplete.", "important_links":{ "appeal_form":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/pdf/Appeal.pdf", "waiver_form":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/pdf/Waiver.pdf", "medical_form":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/pdf/Medical_form_301214.pdf", "radiological_form":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/pdf/radiological-form-updated-2021.pdf", "visa_application_form":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/pdf/VISA-APPLICATION-FORM.pdf" }, "processing_time":{ "general":"Minimum 10-15 working days", "specific":{ "Goa":"Minimum 10-15 working days", "Pune":"Minimum 10-15 working days", "Delhi":"Minimum 5 working days", "Jaipur":"Minimum 7 working days", "Mumbai":"Minimum 10-15 working days", "Gurgaon":"Minimum 7 working days", "Kolkata":"Minimum 7 working days", "Ahmedabad":"Minimum 10-15 working days", "Bangalore":"Minimum 10-15 working days" } }, "documents_needed":[ "Valid passport (at least 30 days after intended departure)", "Completed visa application form (DHA-84)", "Proof of funds (bank statement for last 3 months)", "Letter of acceptance from the educational institution", "Medical report (BI-811)", "Proof of accommodation", "Two recent passport-sized photographs", "Vaccination certificate (if applicable)", "Covering letter stating purpose of visit" ], "medical_condition":true, "total_process_time":"Minimum 10-15 working days", "travel_information":{ "itinerary":"Day-to-day travel plan covering stay in South Africa.", "return_ticket":"Valid return air ticket required." }, "application_process":{ "how_to_apply":"Submit the application form along with required documents at the VFS center.", "where_to_apply":"VFS Global Visa Application Centre" }, "eligibility_criteria":{ "general":"Must meet all documentation requirements.", "specific":"Must provide proof of enrollment in a recognized educational institution." }, "extending_visa_validity":"Extensions may be applied for before the visa expires.", "annulment_and_revocation":"Visa may be annulled or revoked at the discretion of the South African authorities." } }, "metadata":{ "url":"https://visa.vfsglobal.com/one-pager/southafrica/india/english/", "title":"Visa Information", "favicon":{ }, "keywords":"", "scrapeId":"5e14a488-7de0-48ee-af97-bcf59622d436", "sourceURL":"https://visa.vfsglobal.com/one-pager/southafrica/india/english", "statusCode":200, "description":"" } } ] } ```
kcharvi commented 3 weeks ago

ftonato commented on 2025-03-24T13:37:27+00:00 (Original):

Hello,

After a thorough review, the most logical conclusion is that there is no issue with our application. The behavior observed seems to stem from a misunderstanding of how the API works rather than a technical fault.

In this specific case, I noticed that maxDepth was set to 1, which differs from the examples I used during testing, where the results aligned with expectations. This difference in configuration appears to be the key factor affecting the outcome.

You can find more details on how to use the maxDepth parameter in our documentation here: https://docs.firecrawl.dev/api-reference/endpoint/crawl-post#body-max-depth

Once again, I apologize for the inconvenience and the time it took to reach this conclusion.