API

https://netrunnerdb.com/ can be queried via an http API.

This API is provided for use in deckbuilders, card databases, tournament managers, and other tools that complement playing Android: Netrunner.

All texts are copyrighted by Fantasy Flight Games and/or Null Signal Games.


Version 3.0

A new API is being developed to replace the current version (2.0). Some notable improvements include:

  • Cards are a separate entity from their printings, reducing content duplication
  • A proper represenation of play formats and rotation
  • A built-in search feature

A preview version of this API and its documentation can be found here: api-preview.netrunnerdb.com.


Public and OAuth2

There are two kinds of API endpoints: public and private. Public API endpoints are available to everyone, while private API endpoints use OAuth2 and are only available to registered clients (applications).

If you want access, please send an email to webdev@nullsignal.games describing your project, including the Application Name, the Application Website, and a Redirect URI (you can read this awesome page for more info on OAuth2) and we'll send you credentials.

Documentation

The documentation can be found here: https://netrunnerdb.com/api/doc.

Examples

Encoding

The response is encoded in utf-8. The HTTP header is Content-Type:application/json; charset=UTF-8.

Caching

Please conform to HTTP Caching best practices when building your queries.

CORS