# OpenSea NFT Marketplace Data

**Use case:** 

Get collection data, NFT items, and sales and listing events for an OpenSea collection.

## Input

```json
{
  "target": "combined",
  "collectionReferences": [
    "boredapeyachtclub"
  ],
  "maxItems": 25,
  "maxActivityEvents": 25,
  "activityTypes": [
    "sales",
    "listings"
  ]
}
```

## Output

```json
{
  "collectionReference": {
    "label": "Collection reference",
    "format": "string"
  },
  "collection.name": {
    "label": "Name",
    "format": "string"
  },
  "collection.slug": {
    "label": "Slug",
    "format": "string"
  },
  "collection.url": {
    "label": "OpenSea URL",
    "format": "string"
  },
  "collection.imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "collection.contractAddress": {
    "label": "Contract address",
    "format": "string"
  },
  "collection.chain": {
    "label": "Blockchain",
    "format": "string"
  },
  "collection.market.floorPrice.amount": {
    "label": "Amount",
    "format": "number"
  },
  "collection.market.floorPrice.currency": {
    "label": "Currency",
    "format": "string"
  },
  "collection.market.floorPrice.usd": {
    "label": "USD value",
    "format": "number"
  },
  "collection.market.supply": {
    "label": "Supply",
    "format": "integer"
  },
  "collection.market.totalVolume.amount": {
    "label": "Amount",
    "format": "number"
  },
  "collection.market.totalVolume.currency": {
    "label": "Currency",
    "format": "string"
  },
  "collection.market.totalVolume.usd": {
    "label": "USD value",
    "format": "number"
  },
  "collection.market.totalSales": {
    "label": "Total sales",
    "format": "integer"
  },
  "collection.market.ownerCount": {
    "label": "Owner count",
    "format": "integer"
  },
  "collection.market.listedCount": {
    "label": "Listed count",
    "format": "integer"
  },
  "nftItems": {
    "label": "NFT items",
    "format": "array"
  },
  "activity": {
    "label": "Activity",
    "format": "array"
  },
  "observedAt": {
    "label": "Observed at",
    "format": "string"
  },
  "sourceErrors": {
    "label": "Source errors",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenSea Collection Scraper](https://apify.com/maximedupre/opensea) with a specific input configuration. Visit the [Actor detail page](https://apify.com/maximedupre/opensea) to learn more, explore other use cases, and run it yourself.