Discover/NVIDIA API
live

NVIDIA APInvidia.com

Access NVIDIA GeForce NOW games, DLSS game lists, GPU specs, driver downloads, job listings, and news articles via a single structured API.

Endpoint health
verified 7d ago
get_geforce_now_games
search_jobs
get_driver_options
get_job_detail
get_articles
9/9 passing latest checkself-healing
Endpoints
9
Updated
22d ago

What is the NVIDIA 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.

Try it
Maximum number of games to return.
api.parse.bot/scraper/7c9e35ea-baa0-4507-a8f8-dd971e89f63e/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/7c9e35ea-baa0-4507-a8f8-dd971e89f63e/get_geforce_now_games?limit=5' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace nvidia-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: NVIDIA API SDK — bounded, re-runnable; every call capped."""
from parse_apis.nvidia_api import Nvidia, Model, Series, Os, ResourceNotFound

client = Nvidia()

# Search for jobs and inspect the first result
job = client.jobs.search(query="machine learning", limit=1).first()
if job:
    print(job.name, job.department, job.work_location_option)

# Browse GeForce NOW catalog — top popular games
for game in client.gfncatalogs.list(limit=3):
    print(game.title, game.sort_name)

# Get GPU product details using the Model enum
try:
    gpu = client.gpuproducts.get(model=Model.RTX_5090, series=Series._50_SERIES)
    print(gpu.name, gpu.description[:80])
except ResourceNotFound as exc:
    print(f"GPU not found: {exc}")

# Search for a driver by OS and product series
driver = client.drivers.search(os=Os._135, pf=1066, pst=131)
print(driver.name, driver.version, driver.file_size)

# List DLSS-supported games
for game in client.dlsscatalogs.list(limit=3):
    print(game.name, game.type, game.dlss_frame_generation)

# Get articles by tag
result = client.articleresults.list(tag="nvidia-dlss", limit=2).first()
if result:
    print(result.article_localized_tag, result.articles_count)

print("exercised: jobs.search / gfncatalogs.list / gpuproducts.get / drivers.search / dlsscatalogs.list / articleresults.list")
All endpoints · 9 totalmissing one? ·

Retrieve the full catalog of games available on NVIDIA GeForce NOW cloud gaming service. Results are ordered by popularity rank. Pagination is handled internally via cursor; the limit parameter caps total items returned.

Input
ParamTypeDescription
limitintegerMaximum number of games to return.
Response
{
  "type": "object",
  "fields": {
    "games": "array of game objects with title, sortName, images, gfn, and variants",
    "total": "integer total number of games returned"
  },
  "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 API

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.

Reliability & maintenanceVerified

The NVIDIA API is a managed, monitored endpoint for nvidia.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when nvidia.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official nvidia.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
7d ago
Latest check
9/9 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • 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.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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.

Frequently asked questions
Does NVIDIA have an official public developer API?+
NVIDIA offers developer APIs for AI and GPU computing through the NVIDIA Developer Program at developer.nvidia.com, covering areas like CUDA, TensorRT, and cloud AI services. There is no official public REST API for the consumer-facing site data covered here, such as GeForce NOW catalogs, driver search, or job listings.
Which GPU series work with get_gpu_product_detail?+
The endpoint is confirmed working for 50-series models using slugs like rtx-5090 or rtx-5080 with series set to 50-series. Older series (e.g. 30-series, 40-series) may not include the structured product data and will return an upstream_error instead of product fields.
Does get_dlss_games return games for all NVIDIA technologies, or only DLSS?+
The endpoint covers multiple technologies: DLSS Multi Frame Generation, Frame Generation, Super Resolution, Ray Reconstruction, DLAA, Ray Tracing, and AI. Each game or app entry includes per-technology support flags, and the columns object describes available filter options.
Does the API expose GPU benchmark scores or performance comparisons?+
Not currently. The API covers product specs via get_gpu_product_detail (name, description, price, availability) and driver details via search_drivers, but does not return benchmark data or performance comparisons. You can fork the API on Parse and revise it to add an endpoint targeting a benchmark or comparison data source.
Can I retrieve archived or historical driver versions, not just the latest?+
The search_drivers endpoint returns the latest available driver for a given GPU and OS combination — fields include version, download_url, file_size, and release_date for that single result. Historical driver listings are not currently returned. You can fork the API on Parse and revise it to add an endpoint covering the driver history page for a specific product.
Page content last updated . Spec covers 9 endpoints from nvidia.com.
Related APIs in Developer ToolsSee all →
marketplace.nvidia.com API
Search and browse NVIDIA's marketplace for GPUs, laptops, desktops, and other hardware with detailed specifications, pricing, and availability across consumer and enterprise products. Filter by GPU model, brand, and current deals to find exactly what you're looking for.
nvidia.wd5.myworkdayjobs.com API
Search and browse current NVIDIA job openings by title, location, and department, then retrieve detailed information about specific positions including requirements and application details. Provides real-time access to available roles across the company.
tweakers.net API
Access product listings, prices, shop comparisons, news articles, and search results from Tweakers.net — the leading Dutch tech platform and price comparison site.
gamestop.com API
Search GameStop's catalog for games and merchandise, browse products by category, view detailed product information including reviews, and discover what's available—all with seamless access that handles Cloudflare protection automatically.
store.epicgames.com API
Access data from store.epicgames.com.
dell.com API
Search and explore Dell products across categories while accessing detailed specifications, drivers, downloads, warranty information, and support articles all from one unified interface. Get comprehensive product details and driver compatibility information to make informed purchasing and support decisions.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
corsair.com API
Search and filter Corsair's gaming peripherals and PC components catalog by keywords, category, and product attributes like price and specs. Browse detailed product information, compare options, and easily navigate through results with sorting and pagination to find exactly what you need.