Cards

Relationships

Card resources have the following relationships for their records.

  • Card Cycles
  • Card Pools
  • Card Sets
  • Card Subtypes (if not present, the relationship link will filter for a ‘none’ value and return an empty set)
  • Card Type
  • Decklists
  • Faction
  • Printings
  • Reviews
  • Rulings
  • Side

Get A Single Card

Endpoint

GET /api/v3/public/cards/:id

Parameters

Name Description Type
id required Id string

Request

Route

GET /api/v3/public/cards/hedge_fund

Headers

Content-Type: application/json
Host: api-preview.netrunnerdb.com

cURL

curl -g "https://api-preview.netrunnerdb.com/api/v3/public/cards/hedge_fund" -X GET 

Response

Simulated Response

Status

200

Headers

content-type: application/vnd.api+json; charset=utf-8

Body

{
  "data": {
    "id": "hedge_fund",
    "type": "cards",
    "attributes": {
      "stripped_title": "Hedge Fund",
      "title": "Hedge Fund",
      "card_type_id": "operation",
      "side_id": "corp",
      "faction_id": "neutral_corp",
      "cost": "5",
      "advancement_requirement": null,
      "agenda_points": null,
      "base_link": null,
      "deck_limit": 3,
      "in_restriction": false,
      "influence_cost": 0,
      "influence_limit": null,
      "memory_cost": null,
      "minimum_deck_size": null,
      "num_printings": 2,
      "printing_ids": [
        "01110",
        "01063"
      ],
      "date_release": "2012-09-06",
      "restriction_ids": [],
      "strength": null,
      "stripped_text": "Gain 9 credits.",
      "text": "Gain 9[credit].",
      "trash_cost": null,
      "is_unique": false,
      "card_subtype_ids": [],
      "display_subtypes": null,
      "attribution": null,
      "updated_at": "2025-06-19T20:15:47+00:00",
      "format_ids": [
        "eternal",
        "standard",
        "startup"
      ],
      "card_pool_ids": [
        "eternal_01",
        "standard_01",
        "standard_02",
        "startup_01",
        "startup_02"
      ],
      "snapshot_ids": [
        "eternal_01",
        "standard_01",
        "standard_02",
        "standard_03",
        "standard_04",
        "standard_05",
        "startup_01",
        "startup_02"
      ],
      "card_cycle_ids": [
        "core",
        "core"
      ],
      "card_cycle_names": [
        "Core Set",
        "Core Set"
      ],
      "card_set_ids": [
        "core",
        "core"
      ],
      "card_set_names": [
        "Core",
        "Core"
      ],
      "designed_by": null,
      "printings_released_by": [
        ""
      ],
      "pronouns": null,
      "pronunciation_approximation": null,
      "pronunciation_ipa": null,
      "layout_id": "normal",
      "num_extra_faces": 0,
      "faces": [],
      "card_abilities": {
        "additional_cost": false,
        "advanceable": false,
        "gains_subroutines": false,
        "interrupt": false,
        "link_provided": null,
        "mu_provided": null,
        "num_printed_subroutines": null,
        "on_encounter_effect": false,
        "performs_trace": false,
        "recurring_credits_provided": null,
        "rez_effect": false,
        "trash_ability": false
      },
      "restrictions": {
        "banned": [],
        "global_penalty": [],
        "points": {},
        "restricted": [],
        "universal_faction_cost": {}
      },
      "latest_printing_id": "01110"
    },
    "relationships": {
      "card_cycles": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/card_cycles?filter[id]=core,core"
        }
      },
      "card_sets": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/card_sets?filter[id]=core,core"
        }
      },
      "card_subtypes": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/card_subtypes?filter[id]=none"
        }
      },
      "card_type": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/card_types/operation"
        }
      },
      "faction": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/factions/neutral_corp"
        }
      },
      "printings": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/printings?filter[card_id]=hedge_fund"
        }
      },
      "rulings": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/rulings?filter[card_id]=hedge_fund"
        }
      },
      "reviews": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/reviews?filter[card_id]=hedge_fund"
        }
      },
      "side": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/sides/corp"
        }
      },
      "decklists": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/decklists?filter[card_id]=hedge_fund"
        }
      },
      "card_pools": {
        "links": {
          "related": "http://localhost:3000/api/v3/public/card_pools?filter[card_id]=hedge_fund"
        }
      }
    },
    "links": {
      "self": "http://localhost:3000/api/v3/public/cards/hedge_fund"
    }
  },
  "meta": {}
}