nvidia.com APInvidia.com ↗
Access NVIDIA GeForce NOW games, DLSS game lists, GPU specs, driver downloads, job listings, and news articles via a single structured API.
curl -X GET 'https://api.parse.bot/scraper/7c9e35ea-baa0-4507-a8f8-dd971e89f63e/get_geforce_now_games?limit=3' \ -H 'X-API-Key: $PARSE_API_KEY'
Get the full list of games available on GeForce NOW cloud gaming service. Returns paginated results ordered by popularity.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of games to return. |
{
"type": "object",
"fields": {
"games": "array of game objects with title, sortName, images, gfn, and variants",
"total": "integer total number of games in the catalog"
},
"sample": {
"data": {
"games": [
{
"gfn": {
"playType": "READY_TO_PLAY",
"minimumMembershipTierLabel": null
},
"title": "Fortnite®",
"images": {
"GAME_ICON": "https://img.nvidiagrid.net/apps/101138111/ZZ/GAME_ICON_01.png",
"GAME_LOGO": "https://img.nvidiagrid.net/apps/101138111/ZZ/GAME_LOGO_01.png",
"TV_BANNER": "https://img.nvidiagrid.net/apps/101138111/ZZ/TV_BANNER_01.jpg",
"GAME_BOX_ART": "https://img.nvidiagrid.net/apps/101138111/ZZ/GAME_BOX_ART_01.jpg",
"FEATURE_IMAGE": ""
},
"sortName": "fortnite",
"variants": [
{
"appStore": "EPIC",
"publisherName": "Epic Games",
"minimumSizeInBytes": null
}
]
}
],
"total": 750
},
"status": "success"
}
}About the nvidia.com API
This API exposes 9 endpoints covering NVIDIA's product and content catalog, from the full GeForce NOW game library (returned by get_geforce_now_games with popularity-ordered pagination) to driver download URLs, GPU product details, DLSS-compatible game lists, job postings, retailer availability, and news articles. Each endpoint returns structured fields so you can build dashboards, tooling, or data pipelines without scraping nvidia.com directly.
Game & Technology Catalogs
The get_geforce_now_games endpoint returns an array of game objects including title, sortName, images, gfn metadata, and variants, plus a total count of the full catalog. Pagination is controlled via the limit parameter. The get_dlss_games endpoint returns a flat list of games and apps with per-entry flags for each supported NVIDIA technology — DLSS Multi Frame Generation, Frame Generation, Super Resolution, Ray Reconstruction, DLAA, Ray Tracing, and AI — along with a columns object describing available filter options.
GPU Products, Drivers & Retail
get_gpu_product_detail accepts a model slug (e.g. rtx-5090) and a series slug (e.g. 50-series) and returns JSON-LD structured data including name, brand, description, and an offers object with price, priceCurrency, availability, and url. Note that this endpoint is confirmed working for 50-series models; older series may return an upstream_error. The get_where_to_buy endpoint takes a full NVIDIA product page URL and returns retailer entries organized into tabs (retail and OEM/system builder). For drivers, call get_driver_options first to retrieve numeric IDs for product types, series, operating systems, and languages, then pass those IDs as os, pf, and pst to search_drivers, which returns version, download_url, file_size, release_date, and a details_url.
Jobs & News
search_jobs queries NVIDIA's Eightfold.ai-powered careers portal and returns job objects with id, displayJobId, name, locations, department, and workLocationOption, plus a facets object for location and smart filters. Use get_job_detail with a numeric job_id to retrieve the full HTML jobDescription, publicUrl, and salary-related data for a specific posting. get_articles filters NVIDIA news and blog content by tag (e.g. nvidia-dlss, geforce-rtx-50-series) and returns articleTitle, authorName, articleDate, articlePath, and tagsList for each result.
- Build a driver update checker that calls search_drivers with a user's GPU and OS IDs and alerts when a new version is released.
- Populate a GeForce NOW game compatibility search widget using the title and variant data from get_geforce_now_games.
- Create a DLSS support filter for a PC gaming database by mapping game names to their technology flags from get_dlss_games.
- Aggregate NVIDIA job listings by location or department using the facets returned by search_jobs.
- Display current GPU pricing and retailer availability alongside specs by combining get_gpu_product_detail and get_where_to_buy.
- Monitor NVIDIA news coverage for a specific product line by polling get_articles with a relevant tag.
- Build a job detail page that renders the full HTML description and application link from get_job_detail.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.