Card Issues

Report a Card Data Issue

Report a data issue for a specific card. Use this endpoint to flag problems such as incorrect prices, wrong variants, missing data, or date errors. Issues are tracked and resolved by our data team.

Requires Enterprise tier. Returns 403 for Free and Pro tier API keys.

Status lifecycle: newin_progressresolved

Example curl:

curl -X POST -H "X-API-Key: your-api-key-here" \
     -H "Content-Type: application/json" \
     -d '{
       "card_id": "1587446850514x224832321163624450",
       "card_title": "2018 Topps Chrome Shohei Ohtani #150 Refractor",
       "issue_description": "PSA 10 price showing $250 but recent comps are consistently $2,500+"
     }' \
     "https://api.cardhedger.com/v1/cards/issues"
post/v1/cards/issues

Request body

card_idstring required

The unique card ID from CardHedge (e.g. from card-search or card-details)

card_titlestring nullable

Optional card title for context (e.g. '2018 Topps Chrome Shohei Ohtani #150 Refractor')

issue_descriptionstring required

Detailed description of the data issue — what is wrong and what the correct value should be (minimum 10 characters)

Example request

{
  "card_id": "1587446850514x224832321163624450",
  "issue_description": "PSA 10 price showing $250 but recent comps are consistently $2,500+"
}

Response

Issue created successfully

idinteger required

Unique issue ID — use this to check status later

statusstring required

Issue status (always 'new' on creation)

created_atstring date-time required

Timestamp when the issue was created

Changes

No recorded changes to this endpoint across all 1 revision of this API.