0% found this document useful (0 votes)
20 views28 pages

Marketplace Activity API

The Marketplace Activity API provides endpoints for accessing transaction data related to NFTs on the DraftKings Marketplace, including details on purchases, sales, and awards. Recent updates include the addition of terms, API rate limits, and new query capabilities for retrieving collectible editions. Users are prohibited from using automation tools or data extraction methods on the API as per DraftKings Terms of Use.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
20 views28 pages

Marketplace Activity API

The Marketplace Activity API provides endpoints for accessing transaction data related to NFTs on the DraftKings Marketplace, including details on purchases, sales, and awards. Recent updates include the addition of terms, API rate limits, and new query capabilities for retrieving collectible editions. Users are prohibited from using automation tools or data extraction methods on the API as per DraftKings Terms of Use.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 28

Marketplace Activity API

Last Updated 01-22-2024

Date Update

01-22-2024 Added terms

9-15-2023 API rate limits updated

4-7-2023 Added Related Transaction Query (Can be used to


retrieve awarded Collectible Editions from an
opened Pack)

11-14-2022 Clarifying HTTP request verbs and response codes

11-11-2022 First Published

The Marketplace Activity API is a collection of endpoints which will be exposed to the public
for the consumption by individuals or 3rd party stats providers. This document is intended
as a technical overview of the various endpoints available along with a description of
parameters and outputs.

In accordance with the DraftKings Terms of Use, you may not use any API (including
without limitation, to any public API) or any DraftKings issued end point to create, use,
operate, or employ any bots, robots, parser, spiders, scripts, programs, routines, or any
other forms of automation for any component of a transaction on the DraftKings
Marketplace or the Website. In addition, you may also not use any web scraping, web
harvesting, or data extraction methods to extract any data from the Website or the
DraftKings Marketplace.
Base Url
https://marketplace.draftkings.com/api/activity/{Version}

Version Notes

v1 Version one provides the ability to query the following:

● NFT Transactions across all of Marketplace


● NFT Transactions by Merchandise
● NFT Transactions by a specific Merchandise Edition
(coming soon)
● Related Transactions by TransactionKey (coming soon)
○ For retrieving all awards received as part of a pack
open transaction

Key Terms
Term Description

Transaction An action (defined by TransactionType) that occurred relating


to a specific Merchandise Edition in Marketplace

Collectible A limited NFT series of a single collectible digital asset where


each NFT (Edition) in the series shares the same details (except
Edition Number).

Collectible Edition A unique edition of a Collectible designated by the Edition


Number. Each edition is a distinct NFT with the corresponding
Edition Number.

Pack An entity that represents the shared details for a particular set
of Pack Editions.

Pack Edition A specific edition of a Pack which has been minted as an NFT,
Pack Editions produce a predefined amount of Collectible
Editions when opened. Despite the fact that they exist
on-chain, Pack Editions can only be opened on DK
Marketplace. Pack Editions are also interchangeable until
opened so they do not have Edition Numbers. Instead they are
identified by a PackEditionKey

Merchandise Either:

● Collectible
● Pack

Merchandise Edition Same as above

Attribute Is a name/value pair that is defined for a piece of Merchandise


(NFT) and used for describing distinguishing features.

Type Definitions
Some endpoints below have certain types that are either taken in or returned as strings.

MerchandiseType
Name Description

Collectible See Key Terms

Pack See Key Terms

TransactionType
Name Description

PrimaryPurchaseConfirmation
● Provides price, time, and user information
about Collectible/Pack Editions purchased
from Drops
● Includes Merchandise metadata

SecondaryPurchaseConfirmati
on ● Provides price, time, and user information
about Collectible/Pack Editions purchased
from the secondary market
● Includes Merchandise metadata

SellPlacement
● Provides price, time, and user information
about Collectible/Pack Editions listed on the
secondary market regardless of whether it
actually sold
● Includes Merchandise metadata

PackOpened
● Provides user information and time
information about when a Pack Edition was
opened
● Includes Merchandise metadata

PackAward
● Provides user information and time
information about a Collectible Edition that
was revealed from a Pack Edition
● Includes Merchandise metadata
● Includes basic parent Merchandise metadata
○ Excludes Thumbnail

AdminReward
● Provides user information about
Collectible/Pack Editions airdropped or
otherwise gifted inside the Marketplace
● Includes Merchandise metadata
AwardFromSupplier
● Provides user information about
Collectible/Pack Editions won in an internal DK
contest
● Includes Merchandise metadata

AwardFromAuction
● Provides price, time, and user information
about Collectible/Pack Editions won through
an auction
● Includes Merchandise metadata

TransferComplete
● Provides blockchain wallet, transaction, time,
and user information about Collectible/Pack
Editions withdrawn from marketplace to an
external wallet
● Includes Merchandise metadata

DepositComplete
● Provides blockchain wallet, transaction, time,
and user information about Collectible/Pack
Editions deposited to a marketplace portfolio
from an external wallet
● Includes Merchandise metadata

Minted
● Includes time and Merchandise metadata from
when any Edition was minted by marketplace

AwardFromCrafting
● Provides information about Collectible/Pack
Editions awarded from a crafting recipe
● Includes Merchandise metadata
Burned
● Provides information about Collectible/Pack
Editions burned on the blockchain and no
longer available in marketplace
● Includes Merchandise metadata

EventType
Event types represent aggregations (or in some cases one-to-one mapping) of
TransactionType. These are the types that are used as filter parameters instead of
TransactionType, but transaction type names are included in responses on individual
transactions

Name TransactionTypes represented

Sales
The event type accounts for

● PrimaryPurchaseConfirmation
● SecondaryPurchaseConfirmation

Listings SellPlacement

Prize AwardFromSupplier

Open PackOpened

Reward AdminReward

Won AwardFromAuction

Withdraw TransferComplete

Deposit DepositComplete

Received PackAward

Mint Minted
CraftingAward AwardFromCrafting

Burn Burned

Endpoints
The Activity API contains the following endpoints

Activity Feed Query

Route

Route Description Example

POST /transactions Retrieves paged Retrieve all Sales transactions:


transaction details with
corresponding curl --location --request POST

Merchandise metadata 'https://marketplace.draftkings.com/a

from the marketplace that pi/activity/v1/transactions' \

matches the provided filter


--header 'Content-Type:
criteria application/json' \
--data-raw '{
"EventTypes": ["Sales"]
}'

Request Parameters

Parameter Type Description

Limit Int Page size - currently 200 is the maximum page size
we support for this query. If no limit is provided, the
default is also 200
String This value is for paging and should be obtained off
Cursor of the response from this query and sent back to get
the next page

EventTypes Array of See EventType definitions


Strings
If no event types are provided then all will be
included. Passing in "All" explicitly also has the same
effect

Exception: when requesting "All" (or with no


EventType filter), the following event types are not
included:

● Received
● Mint

MerchandiseType string See MerchandiseType definitions

MinPrice decimal When filtering for EventTypes that include prices,


the dictates the lowest price desired in the result set

MaxPrice decimal When filtering for EventTypes that include prices,


the dictates the maximum price desired in the result
set

CollectionKeys Array of Dictates which collections are represented in the


Guids result set. See Collections and Suppliers for possible
values

SupplierKeys Array of Dictates which collections are represented in the


Guids result set. See Collections and Suppliers

MerchandiseKeys Array of Dictates what specific merchandise will be


Guids represented in the result set.

Response

Body
This is the main body of the response

Property Type Description

Transactions List of Will be ordered by TransactionDate


MerchandiseTransactionRecords descending
(see below)

Cursor string Will be null if no pages remain

ErrorStatus ErrorStatus (see below) Includes error code and description

MerchandiseTransactionRecord

These properties are grouped here for clarity, but they all exist at the root of this object.
Each transaction record identifies metadata and transaction specific information related to
a particular Collectible Edition (NFT) or Pack Edition in the Marketplace.

Property Type Description

ThumbnailUrl string Contains the URL to the thumbnail asset of


the Collectible (NFT)/Pack

ThumbnailType string One of the following values:

● "Image"
● "Video"

ThumbnailMediaType string One of the following values:

● "image/png"
● "video/mp4"
● "application/x-mpegURL"

MerchandiseName string Name of the Collectible (NFT)/Pack

MerchandiseKey Guid Unique Marketplace identifier for the


Collectible (NFT)/Pack
MerchandiseType string See MerchandiseType definition

EditionNumber int Is the numerical edition number of the


particular edition related to this transaction.

Will be null for Packs.

Will always be less than the TotalQuantity of


the given Collectible (NFT)/Pack

MerchandiseEditionKey Guid Unique Marketplace identifier for the specific


edition of the Pack

Will be null for Collectibles

TotalQuantity int Total number of minted Editions of this


Collectible (NFT)/Pack Edition

CollectionKey Guid Unique Marketplace identifier for the


Collection this Collectible (NFT)/Pack Edition
belongs to

CollectionName string Name of the Collection this Collectible


(NFT)/Pack Edition belongs to

SupplierKey Guid Unique Marketplace identifier for the


Supplier this Collectible Edition (NFT)/Pack
Edition belongs to

SupplierName string Name of the Supplier this Collectible Edition


(NFT)/Pack Edition belongs to

Attributes List of Attributes and values assigned to the


Attribute Merchandise that is the subject of the
Objects transaction
(see below)
ParentMerchandiseKey Guid Currently only populated for the PackAward
TransactionType:

Identifies the Pack that produced this


Collectible Edition (NFT)

ParentMerchandiseEdition Guid Currently only populated for the PackAward


Key TransactionType:

Identifies the specific Pack edition that


produced this Collectible Edition (NFT)

ParentMerchandiseName string Currently only populated for the PackAward


TransactionType:

The name of the Pack that produced this


Collectible Edition (NFT)

TransactionKey string This is a unique identifier for this transaction


in the Marketplace

TransactionType string See TransactionType definitions

TransactionDate DateTime The date/time the transaction occurred (in


UTC)

Username string The DK username of the user involved with


the transaction (IE user who bought the NFT)

UserKey Guid A unique key identifying the user involved


with the transaction

Amount decimal A decimal value showing the value of the


transaction (IE purchase price)

CurrencyCode string Currency of the transaction - currently always


"USD"

BlockchainTransactionHash string Unique transaction hash identifying the


transaction on the blockchain.
Currently only available for these
TransactionTypes:

● TransferComplete
● DepositComplete

BlockchainTransactionUrl string URL to the blockchain-specific "blockscan"


site showing the status of this transaction
Currently only available for these
TransactionTypes:

● TransferComplete
● DepositComplete

BlockchainWalletAddress string Wallet address of either the destination or


origination of this transaction.

Currently only available for these


TransactionTypes:

● TransferComplete (destination wallet)


● DepositComplete (origin wallet)

BlockchainWalletUrl string URL to the blockchain-specific "blockscan"


site showing the wallet

Currently only available for these


TransactionTypes:

● TransferComplete (destination wallet)


● DepositComplete (origin wallet)

RelatedTransactionCount int If this value is greater than zero then that is


an indication that this transaction is the
"Parent" of another transaction.
This is only the case currently for
PackOpened TransactionType - in this case
this value represents the number of awards
generated from this Pack Edition

Attribute

Property Type Description

Name string The name of this attribute - IE "Position"

ValueType string Indicates what data type is represented in


the Value property from the following
possible values:

● "Number"
● "Text"
● "Boolean"

Value string The specific value for the given attribute - IE

Name: "Position”

Value: "Quarterback"

ValueUrl string Hyperlink associated with this attribute value

ErrorStatus

Property Type Description

Code string See Error Codes below

ErrorMessage string Description of the error - can be provided


with support requests

HttpStatusCode int Common Http Status code provided on every


response

Error Codes
These codes can be returned from the Activity API

Code Description HTTP Status Code

"MPA-400" Bad Request 400

"MPA-408"/"MPA-410" Feature Disabled 501

"MPA-500" Internal Server Error 500

Example

Description Retrieve the most recent Sales transaction from all Collectibles
in the Reignmakers Football Collection

Request curl --location --request POST


'https://marketplace.draftkings.com/api/activity/v1/transactions' \
--header 'Content-Type: application/json' \
--data-raw '{
"EventTypes": ["Sales"],
“MerchandiseType”: “Collectible”
“CollectionKeys”: [“5EAE2563006D4FE0AE1405A31567C60C”]
"Limit": 1
}'

Response

"transactions": [
{
"thumbnailUrl":
"https://marketplace.draftkings.com/_assets/Staging/2022-08-14_Prize_Master/Thumbnails/s
et_prizev12022_tyler_lockett_19905_core_thumbnail.png",
"thumbnailType": "Image",
"thumbnailMediaType": "image/png",
"merchandiseName": "Tyler Lockett: 2022 Prize Set (CORE)",
"merchandiseKey": "d8f60d4260164d5f9b7136f0b3a7fb18",
"merchandiseType": "Collectible",
"editionNumber": 179,
"totalQuantity": 600,
"collectionKey": "5eae2563006d4fe0ae1405a31567c60c",
"collectionName": "Reignmakers Football Collection",
"supplierKey": "a36385bff3e011ec85f81223fa216287",
"supplierName": "DraftKings x NFLPA",
"attributes": [
{
"name": "Athlete Name",
"valueType": "Text",
"value": "Tyler Lockett",
"valueUrl": ""
},
{
"name": "Edition Tier",
"valueType": "Text",
"value": "Skill Starters"
},
{
"name": "PlayerDkId",
"valueType": "Number",
"value": "19905",
"valueUrl": ""
},
{
"name": "Position",
"valueType": "Text",
"value": "WR"
},
{
"name": "Rarity Tier",
"valueType": "Text",
"value": "Core"
},
{
"name": "Rookie Status",
"valueType": "Text",
"value": "No"
},
{
"name": "Series",
"valueType": "Text",
"value": "2022"
},
{
"name": "Set Name",
"valueType": "Text",
"value": "Prize"
},
{
"name": "SuperStar Status",
"valueType": "Text",
"value": "No"
},
{
"name": "Team",
"valueType": "Text",
"value": "SEA"
},
{
"name": "GameCard",
"valueType": "Text",
"value":
"https://api.draftkings.com/nftgames/assets/reignmakers-football/collectiblegamecards/set_p
rizev12022_tyler_lockett_19905_core_gamecard.png",
"valueUrl": ""
}
],
"transactionKey": "q/oVIAO7w0WMLq68M4su2j/AUKXsstaFzlvbcOFKjh4=",
"transactionType": "SecondaryPurchaseConfirmation",
"transactionDate": "2022-11-08T20:24:49.0000000+00:00",
"username": "Superunknown454",
"userKey": "8d4e26ad-1a1f-4653-bd03-6d06104e3e63",
"amount": 6.0,
"currencyCode": "USD",
"relatedTransactionCount": 0
}
],
"cursor": "1667939089000|bqapPq"
}

Cursor Use

The Transaction query is paged and defaults to 200 records (this is also currently the max
allowed). This means that the response from the Transactions endpoint will contain a string
Cursor property if there are more records that match the specified filters. This Cursor
property can be passed into a subsequent call to the query which, if combined with the
same filter parameters, will result in the next page being returned with no duplicate data.

From the example above, to get the next page you would simply add the Cursor property
from the response as a parameter to the API call:

curl --location --request POST


'http://test-marketplaceapi.test.dkinternal.com/public/activity/v1/transactions' \
--header 'Content-Type: application/json' \
--data-raw '{
"EventTypes": ["Sales"],
“MerchandiseType”: “Collectible”
“CollectionKeys”: [“5EAE2563006D4FE0AE1405A31567C60C”]
"Limit": 1
"Cursor": "1667939089000|bqapPq"
}'

Limits and SLA


SLA Expected
Rate No more than 200 requests per 30 seconds

If this rate is violated, the offending IP will be banned for 1


hour.

If banned, client will receive HTTP code 429

Expected latency 100-300 ms

Should not take longer than 1 second at maximum

Maximum Transactions We do not allow requests for more than 200 transactions at a
per request time

Related Transactions Query

Route

Route Description Example

POST Retrieves transactions Retrieve all Sales transactions:


/transactions/related related to a provided
transaction key. Only curl --location --request POST

returns if a transaction has 'https://marketplace.draftkings.com/a

related transactions pi/activity/v1/transactions/related' \

(relatedTransactionCount
--header 'Content-Type:
> 0). application/json' \
--data-raw '{
"TransactionKey": "XYZ"
}'

Request Parameters

Parameter Type Description

TransactionKey String Provide the key for a Transaction you want to get
related Transactions for. This is a unique identifier
for this transaction in the Marketplace.

Response

Body
This is the main body of the response

Property Type Description

Transactions List of Transactions related to the


MerchandiseTransactionRecords TransactionKey provided.
(see below)

ErrorStatus ErrorStatus (see below) Includes error code and description

MerchandiseTransactionRecord

See table under Activity Feed Query above

ErrorStatus

See table under Activity Feed Query above

Error Codes

These codes can be returned from the Related Transactions API


Code Description HTTP Status Code

"MPA-400" Bad Request 400

"MPA-408"/"MPA-410" Feature Disabled 501

"MPA-500" Internal Server Error 500

Example

Description Retrieve the Collectibles received from a Pack that was opened.
Prerequisite use the Activity API to get the TransactionKey from an
Open transaction

Request curl --location --request POST


'https://marketplace.draftkings.com/api/activity/v1/transactions/relate
d' \
--header 'Content-Type: application/json' \
--data-raw '{
“TransactionKey”:
“%2bOUPcSgNNW4jP%2bptosJmnlFdB5D4I%2bTzrV6IZP5LHPM%3d”
}'

Response

"transactions": [

"thumbnailUrl":

"https://marketplace.draftkings.com/_assets/collectibles/assets/922bdf4c-7aac-42fd-868

a-9e43610b3a64.png",

"thumbnailType": "Image",

"thumbnailMediaType": "image/png",

"merchandiseName": "Damir Ismagulov: 2023 Genesis Set (CORE)",

"merchandiseKey": "289dc5a8b60745d9a3daad80786034a0",
"merchandiseType": "Collectible",

"editionNumber": 592,

"totalQuantity": 720,

"collectionKey": "8b8f14fb451944aca580a1e6bcb95cd4",

"collectionName": "2022-23 Reignmakers UFC",

"supplierKey": "a363864af3e011ec85f81223fa216287",

"supplierName": "DraftKings x UFC",

"attributes": [

"name": "Series",

"valueType": "Text",

"value": "2023"

},

"name": "Set Name",

"valueType": "Text",

"value": "Genesis"

},

"name": "Rarity Tier",

"valueType": "Text",

"value": "Core"

},

"name": "Athlete Name",

"valueType": "Text",

"value": "Damir Ismagulov",

"valueUrl": ""
},

"name": "PlayerDkId",

"valueType": "Number",

"value": "202992",

"valueUrl": ""

},

"name": "GameCard",

"valueType": "Text",

"value":

"https://api.draftkings.com/nftgames/assets/reignmakers-ufc/collectiblegamecards/set_

ufcgenesis_damir_ismagulov_202992_core_gamecard.png",

"valueUrl": ""

},

"name": "Country",

"valueType": "Text",

"value": "Kazakhstan"

},

"name": "Division",

"valueType": "Text",

"value": "Men's Lightweight"

},

"name": "Champion Status",

"valueType": "Text",
"value": "No"

},

"name": "Edition Tier",

"valueType": "Text",

"value": "Ranked"

],

"parentMerchandiseKey": "680f504484114c93bbc943607f032013",

"parentMerchandiseEditionKey": "6ad475b8c95b485f80a0f8f4ab09bf9b",

"parentMerchandiseName": "2023 Genesis STANDARD Pack",

"transactionKey": "Dj4rOrkocXQ%2fODur2iBBZuz4lFIeWEvjF6gSDClOBpY%3d",

"transactionType": "PackAward",

"transactionDate": "2023-03-01T17:34:14.0000000+00:00",

"username": "...",

"userKey": "...",

"currencyCode": "USD",

"relatedTransactionCount": 0

},


]

Limits and SLA

SLA Expected
Rate No more than 30 requests per 30 seconds (1 request per
second)

If this rate is violated, the offending IP will be banned for 1


hour.

If banned, client will receive HTTP code 429

Expected latency 100-300 ms

Ideally should not take longer than 1 second at maximum

Collections and Suppliers


These keys can be used as filters on the activity feed query. We will soon be providing an
endpoint that can be used to retrieve these, but the current list is provided here for easy
reference.

Collections
Reignmakers

Collection Name Collection Key

Reignmakers Football Collection 5EAE2563006D4FE0AE1405A31567C60C

Reignmakers UFC Collection 8B8F14FB451944ACA580A1E6BCB95CD4

2023 Reignmakers Football E3BC8069C5B44B17ACC8BE947F719FFA

2023 Reignmakers PGA TOUR 6972B16D088C41EA860B598B397AED5F

Others
Collection Name Collection Key

Preseason Access Collection 602780A639344EB9BB25B6B5763FBCBD

SLAM Logo Passes 912D0BEAC3674C8CA4D575A9328BCE28

Saw Chapter 1 Collection E6F9AADEC79743A09391718147E132A6

Wayne Gretzky Gold on Ice Collection F5B0E72826254ED083C4DE79C48D3C8E

Simone Biles High Score Collection 818C689E7ADA40BB95DFE904AB256B3C

Words to Live By: The 2021 V Foundation EE5B00E60B1C45458232AEF3B6FD43FE


Collection

Tom Brady Origins Collection 8B6DC5F7D703444DA94DFAD20A650B9E

Tony Hawk Last Trick Collection 2F48440A2C8E4B3E9D64FEC2434FF5FA

Derek Jeter: The Captain Collection 75598615C03B4D92B040248084D22C67

Resolve: The Naomi Osaka Manga Collection 7DCE519C231F4394AF61E5CD9863D6A1

Dale Earnhardt Jr. Victory Lap Collection 25D301B148EE4F5AA758B4DFE135F1D7

Super Gronk Collection E8B15F0F3D514BDA8916369B6A13697C

Autograph Trophy Room Collection DB57FF08350E4141B248D351C9DFB059

SAW Valentine’s Day Heartpounder A215BD73F21446E9BEA18EC27309B862


Collection

Tiger Woods - The Ace Collection 60442DF54ADB4160A2E234AF4515463F

2022 College Hoops Collection 7D121BF068694EAA9709E10BF747F25A

Usain Bolt: Tracks & Records Collection CE3B1717C91D440DA603058D33ADB1BD

Tiger Woods Iconic Fist Pumps Collection 45E0244D6FEE486C9A7F752DDCFB1FCA

Man in the Arena: Tom Brady Collection 0D54D6E1EB10468F95963A6C50A9FDAA

2022 Augusta, GA Golf Collection BDDCD84F46C6485FBAAB76ECA79891AC


Top Rank: Enter the Ring D72B7502E75844468A4B5D708406513F

Tony Hawk Last Trick Skateboard Collection CC90CB4208D747FF8F5A91D79F3E1725

James Harden: The Way of the Beard 38B54800C76F45C7B1FC10765C011348

2022 Reignmakers Football Field Pass FCEF9D5CD0E24267A1B54A1EF5FCA7EC


Collection

Vladimir Guerrero Jr. Metabilia Collection E373BD6F3DD44F6EAEC53CBA01DFD909

Ronald Acuña Jr. Metabilia Collection 985E4F9575FA420BAE3632D70B373983

The Future is... 45B62D0BDD324DC98160CBF3E8F52D72

2022 Running Mates Collection A9FCAB2B852742DCA81E46A077D38257

Court Vision: The 2022 Basketball Playoffs D161E8E2A3BF461D9619713F7AA2846B


Collection

The 2022 Indianapolis 500 Collection B0F73B35EF8B435DAD3A3DBC5FA64BBF

Vladimir Guerrero Jr. Limited Edition 51044E62A97E4B08A12B6C3E60EB27D0


Collection

Ronald Acuña Jr. Limited Edition Collection 98190EC949074914B5172DB5C7D16B56

Josh Allen Metabilia Collection 6CE0B3BFB9254489A0BC55737A07DFD8

El Rey: The Rafael Nadal Collection DBC380DA0745413386710B4B80A83795

Josh Allen One4One NFTs D95A2F1DE665443CA79EAB58BB7CB729

2022 Grass Court Passes Collection 70854D27A9F84A899E47E76C7EAE3A25

Vladimir Guerrero Jr. One4One NFTs 0EA10FF5C71B400CA07E81121CF0EF43

Ronald Acuña Jr. One4One NFTs 5679E69D0174469D9B505139A8B1B114

Shane Bieber Metabilia Collection B0E3AC9E338E44BFA5AF1EEFDD8EC4AD

2022 Rec League All-Stars Collection 7317E746245C4FC6946FA489EE31B50D


Shane Bieber Limited Edition Collection A6BFD2935FA246A1A7BDBADCD2F2733C

Joe Musgrove Metabilia Collection 3AD705B2470C4305869A2DA6DE333B6D

2022 DKFC Jersey Collection F9F878990622413A8DCE1121057587CF

Joe Musgrove Limited Edition Collection 5AA954920F7D4F408DB2430B74D04C65

2022 Pixel Playmakers Collection 17A8AA1F84C8468A853010A2DAD023D6

Aoki All-Star Access Pass 6C7E89F7C2594438B67346CA18B95AF8

Aaron Donald Metabilia Collection 675EDD7814B54610B2EC8E1A995E9A75

SlyCrocs 46E32B366C5743FB98B34914B5DCA83F

Daily Fantasy Membership Collection 137349A68D864DFE8C87CB0DA07C2957

The DraftKingdom: Trolls 08AE41467117483D98A127E80102124B

2022 Cup Dreams Collection 773B297A31044E8FACEAE15C124F640B

SLAM Retro Covers Vol. 1 870D762BDCB14FD199CCAC1514B14855

2022 North Pole All-Stars Collection 3D9E84D4C33B4C9FB6B5601B145EA198

2023 Reignmakers UFC Octagon Pass F226CD946F594DE99B5C6AAF2FFCF4A0

2023 Reignmakers Football Crafting Tokens 6BC721A515CE4CD8BC1DB530784CE356

2022 Winning Moments Collection EC35CC05EE9B4EDEA3D530F62077456A

2023 Reignmakers UFC Break Tickets 79DEF9BE78494A2485BC236E2B0AEFF0

2023 Reignmakers PGA TOUR Greens Pass 800239F32D8B49B5BFD5FA5EFFF58A4C

The DraftKingdom: Minotaurs Break Tickets 24A464E787C44F06AD2B2C3B1C7A40F6

The DraftKingdom: Minotaurs 5375AB27082F4DC18D1C67A993E0DE7F

2023 Reignmakers PGA TOUR Break Tickets 942C01B253BB4C51A0A8743217596F0B

2023 TourneyToons 3D Collection 616E92C8CB574FDEAFC722D2CEBF5984


Suppliers
Supplier Name Supplier Key

Autograph A3638152F3E011EC85F81223FA216287

DraftKings A3638494F3E011EC85F81223FA216287

Metabilia A3638534F3E011EC85F81223FA216287

DraftKings x NFLPA A36385BFF3E011EC85F81223FA216287

DraftKings x UFC A363864AF3E011EC85F81223FA216287

Steve Aoki 88057CAB445743ECB4C19A8671ABFAF4

SupDucks 1F3E0426A416498C91DA5A5741CF90DA

DraftKings x PGA TOUR F3598925A97A49DE8BD8068B7EF24F4E

Deadfellaz ABA74636D5F540C8B8F2BB6D133EA61A

Pixel Vault D43AA5F7F31B4B0ABF082E599223D730

DraftKings Inc.
222 Berkeley Street, 5th Floor, Boston, MA, 02116

You might also like