> ## Documentation Index
> Fetch the complete documentation index at: https://docs.brightdata.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Download Snapshot

> Download results from a completed Bright Data Web Scraper API async job by snapshot ID. Pull-based delivery with a 5 GB per-request size limit.

Use this endpoint to pull scraped data directly from the Bright Data API once an async collection job finishes. This is the simplest delivery method: you trigger a job, poll until the snapshot is `ready`, then download the results on demand.

## When to use API download

API download is the right choice when:

* You want a pull-based workflow instead of pushing data to your own infrastructure.
* You don't need results delivered to a specific storage bucket or webhook endpoint.
* Your result set fits within the 5 GB per-request size limit.
* You are prototyping or running ad-hoc jobs and don't want to configure a delivery destination.

If you need automatic delivery or larger result sets, see the other [delivery options](/datasets/scrapers/scrapers-library/delivery-options) (webhooks, Amazon S3, Google Cloud Storage, Azure, Snowflake).

## How it works

1. Trigger an async collection with [`POST /datasets/v3/trigger`](/api-reference/scrapers/asynchronous-requests). The response contains a `snapshot_id`.
2. Poll [`GET /datasets/v3/progress/{snapshot_id}`](/api-reference/scrapers/management-apis/monitor-progress) until `status` is `ready`.
3. Call this endpoint with the `snapshot_id` to download the data.

<Note>
  Results are retained for 16 days after collection. Download within that window, or configure a [delivery option](/datasets/scrapers/scrapers-library/delivery-options) to have data pushed to your storage automatically.
</Note>

## Quick example

```bash cURL theme={null}
curl "https://api.brightdata.com/datasets/v3/snapshot/s_m4x7enmven8djfqak?format=json" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -o results.json
```

The response is the raw dataset in the format you request. JSON returns an array of records, NDJSON and JSON Lines return one record per line, and CSV returns a header row followed by rows.

## Downloading large snapshots in parts

For snapshots larger than a few hundred megabytes, split the download into parts to avoid timeouts and memory pressure on your client:

1. Request the first batch with a `batch_size` (minimum 1000 records) and `part=1`.
2. Call [`GET /datasets/v3/snapshot/{snapshot_id}/parts`](/api-reference/scrapers/management-apis/get-snapshot-delivery-parts) to see how many parts exist.
3. Request each remaining part by incrementing the `part` parameter.

Keep `batch_size`, `format` and `compress` identical across all part requests, otherwise the API returns an error.

## Limits

| Limit                         | Value                            |
| :---------------------------- | :------------------------------- |
| Max download size per request | 5 GB                             |
| Result retention              | 16 days                          |
| Minimum `batch_size`          | 1000 records                     |
| Supported formats             | `json`, `ndjson`, `jsonl`, `csv` |

## Endpoint


## OpenAPI

````yaml api-reference/dca-api GET /datasets/v3/snapshot/{snapshot_id}
openapi: 3.1.0
info:
  title: Brightdata API
  description: API for interaction with datasets marketplace
  version: 1.0.0
servers:
  - url: https://api.brightdata.com
security:
  - bearerAuth: []
paths:
  /datasets/v3/snapshot/{snapshot_id}:
    get:
      description: >-
        Download the snapshot content. This endpoint allows you to retrieve the
        collected dataset once the snapshot status is `ready`. Data can be
        downloaded in multiple formats and optionally split into batches.
      parameters:
        - name: snapshot_id
          in: path
          required: true
          schema:
            type: string
            example: s_m4x7enmven8djfqak
          description: The ID that was returned when the collection was triggered
        - name: format
          in: query
          description: Format of the data to be received
          required: false
          schema:
            type: string
            enum:
              - json
              - ndjson
              - jsonl
              - csv
          example: json
        - name: compress
          in: query
          description: Whether the result should be compressed or not
          required: false
          schema:
            type: boolean
          example: true
        - name: batch_size
          in: query
          description: Divide the snapshot into batches of X records
          required: false
          schema:
            type: integer
            minimum: 1000
          example: 1000
        - name: part
          in: query
          description: If `batch_size` was provided, specifies which batch part to download
          required: false
          schema:
            type: integer
          example: 1
      responses:
        '200':
          description: Okk
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DatasetSnapshotContent'
                description: Snapshot data in the requested format
              examples:
                snapshot_data:
                  value:
                    about: >-
                      Bitstamp is the world’s longest-running cryptocurrency
                      exchange, continuously supporting the Bitcoin economy
                      since 2011. With a proven track record and mature approach
                      to the industry, Bitstamp provides a secure and
                      transparent venue to over four million customers and
                      enables partners to access emerging crypto markets through
                      time-proven infrastructure. NMLS ID: 1905429 View more on
                      the NMLS website here:
                      https://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/1905429
                    affiliated: []
                    company_id: '2734818'
                    company_size: 501-1,000 employees
                    country_code: LU
                    crunchbase_url: >-
                      https://www.crunchbase.com/organization/bitstamp?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_companies&utm_content=profile_cta_anon&trk=funding_crunchbase
                    description: "Bitstamp | 30,341 followers on LinkedIn. World&#39;s longest-running crypto exchange | Bitstamp is the world’s longest-running cryptocurrency exchange, continuously supporting the Bitcoin economy since 2011. With a proven track record and mature approach to the industry, Bitstamp provides a secure and transparent venue to over four million customers and enables partners to access emerging crypto markets through time-proven infrastructure.\n\n\n\n\nNMLS ID:\t1905429\nView more on the NMLS website here: https://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/1905429"
                    employees:
                      - img: >-
                          https://media.licdn.com/dms/image/D4E03AQGixwSI9R6RuQ/profile-displayphoto-shrink_100_100/0/1701888289576?e=2147483647&v=beta&t=JCC9EZgKl5VWFcV_qdHIlvE7ZScFDTQeMOcrMrmU5TA
                        link: >-
                          https://ae.linkedin.com/in/jsgreenwood?trk=org-employees
                        subtitle: Executive leadership & digital transformation
                        title: James Greenwood
                      - img: >-
                          https://media.licdn.com/dms/image/C4E03AQGD22qBJsQ-qw/profile-displayphoto-shrink_100_100/0/1524161393516?e=2147483647&v=beta&t=OSS74hoSvrpwsPjEuuF0AmafkMxX9gf_-j5w4XHXG8o
                        link: >-
                          https://uk.linkedin.com/in/benjamin-parr-940491?trk=org-employees
                        subtitle: Global CMO in Crypto.
                        title: Benjamin Parr
                      - img: >-
                          https://media.licdn.com/dms/image/C4D03AQFdUs4Av5rygg/profile-displayphoto-shrink_100_100/0/1516264422356?e=2147483647&v=beta&t=UOtNggS62Q8IyXGN4PosDnhqOhQjJN8AHRBB78zLlXs
                        link: >-
                          https://si.linkedin.com/in/dominikznidar?trk=org-employees
                        subtitle: Senior backend developer
                        title: Dominik Znidar
                      - img: >-
                          https://media.licdn.com/dms/image/C4D03AQFFTmCpr_pIJQ/profile-displayphoto-shrink_100_100/0/1619005680916?e=2147483647&v=beta&t=Waxiqdk9WwM6YR2zD9c_k3KphlAocoylB8k2FU832pY
                        link: >-
                          https://lu.linkedin.com/in/stephen-bearpark-27aa5b?trk=org-employees
                        subtitle: Chief Financial Officer at Bitstamp
                        title: Stephen Bearpark
                    employees_in_linkedin: 365
                    followers: 30341
                    formatted_locations:
                      - Luxembourg, Luxembourg L-2520, LU
                    founded: 2011
                    funding:
                      last_round_date: '2023-06-24T00:00:00.000Z'
                      last_round_type: Corporate round
                      rounds: 3
                    get_directions_url:
                      - directions_url: >-
                          https://www.bing.com/maps?where=Luxembourg+L-2520+Luxembourg+LU&trk=org-locations_url
                    headquarters: Luxembourg, Luxembourg
                    id: bitstamp
                    image: >-
                      https://media.licdn.com/dms/image/D4D3DAQFefkROuFwk5A/image-scale_191_1128/0/1697616530874/bitstamp_cover?e=2147483647&v=beta&t=R9eU5nQ8J-F3kbGES6-aVLhyLnQQ22lTFwhcNOd0fvg
                    industries: Financial Services
                    input:
                      url: https://www.linkedin.com/company/2734818
                    investors:
                      - Ripple
                    locations:
                      - Luxembourg, Luxembourg L-2520, LU
                    logo: >-
                      https://media.licdn.com/dms/image/D4D0BAQF_ZNbRZzKn0Q/company-logo_200_200/0/1704443361832/bitstamp_logo?e=2147483647&v=beta&t=ON2r3XfdPTbdlCABksfDNCedtHSkO2z9ReQCEI3ihN0
                    name: Bitstamp
                    organization_type: Privately Held
                    similar:
                      - Links: >-
                          https://www.linkedin.com/company/krakenfx?trk=similar-pages
                        subtitle: Financial Services
                        title: Kraken Digital Asset Exchange
                      - Links: >-
                          https://vg.linkedin.com/company/bitfinex?trk=similar-pages
                        subtitle: Financial Services
                        title: Bitfinex
                      - Links: >-
                          https://sc.linkedin.com/company/kucoin?trk=similar-pages
                        subtitle: Financial Services
                        title: KuCoin Exchange
                      - Links: >-
                          https://www.linkedin.com/company/bybitexchange?trk=similar-pages
                        subtitle: Financial Services
                        title: Bybit
                      - Links: >-
                          https://www.linkedin.com/company/geminitrust?trk=similar-pages
                        location: New York, NY
                        subtitle: Financial Services
                        title: Gemini
                      - Links: >-
                          https://www.linkedin.com/company/coinbase?trk=similar-pages
                        subtitle: Internet Publishing
                        title: Coinbase
                      - Links: >-
                          https://www.linkedin.com/company/binance?trk=similar-pages
                        subtitle: Software Development
                        title: Binance
                      - Links: >-
                          https://www.linkedin.com/company/okxofficial?trk=similar-pages
                        subtitle: IT Services and IT Consulting
                        title: OKX
                      - Links: >-
                          https://ky.linkedin.com/company/gateio?trk=similar-pages
                        subtitle: Financial Services
                        title: Gate.io
                      - Links: >-
                          https://sc.linkedin.com/company/htxglobalofficial?trk=similar-pages
                        subtitle: Financial Services
                        title: HTX
                    slogan: World's longest-running crypto exchange
                    specialties: null
                    sphere: Financial Services
                    stock_info: null
                    type: Privately Held
                    updates:
                      - comments_count: 5
                        external_link: >-
                          https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fen%2Ethebigwhale%2Eio%2Farticle-en%2Fjean-baptiste-graftieaux-bitstamp-we-are-going-to-launch-a-fully-regulated-derivatives-offering&urlhash=0UL3&trk=organization_guest_main-feed-card_feed-article-content
                        images:
                          - >-
                            https://media.licdn.com/dms/image/sync/D4E27AQEZaBxV1lGFPQ/articleshare-shrink_800/0/1707981346426?e=2147483647&v=beta&t=Y3ZngwpKLa7Xoz6TzgVNzJZYmMk6Fdom59LHlvbZ3Ns
                        likes_count: 89
                        text: >-
                          In an exclusive interview with The Big Whale our CEO,
                          JB Graftieaux discusses our commitment to expanding
                          services for businesses announcing "We are going to
                          launch a fully regulated derivatives offering." JB
                          Graftieaux highlights Bitstamp's role in driving the
                          evolution of payment technology, particularly for
                          businesses looking to embrace cryptocurrencies. With a
                          focus on expanding services for both B2B and B2B2C
                          clients, Bitstamp provides comprehensive solutions to
                          empower businesses with the tools and resources they
                          need to thrive in today's rapidly evolving financial
                          landscape. From partnering with market players like
                          the Stuttgart Stock Exchange and Revolut to offering
                          white-label solutions for banks, Bitstamp is at the
                          forefront of facilitating institutional adoption of
                          cryptocurrencies. With a commitment to regulatory
                          compliance and a customer-centric approach, we're
                          dedicated to providing trusted, secure, and innovative
                          solutions that meet the diverse needs of our clients.
                          Read the full interview here: https://lnkd.in/dgW8FPtN
                        time: 5d
                        title: Bitstamp
                      - external_link: >-
                          https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fconsensus2024%2Ecoindesk%2Ecom%2Fcommunity-session-voting%2F&urlhash=BzoD&trk=organization_guest_main-feed-card_reshare_feed-article-content
                        images:
                          - >-
                            https://media.licdn.com/dms/image/sync/D5627AQE38PPAJZjCag/articleshare-shrink_800/0/1708030264958?e=2147483647&v=beta&t=pv8BCKVgL_XH4cEPcCCGrqax1jHeAGPQ1f16oSN24Bc
                        likes_count: 1
                        text: >-
                          🔔 Today is the last day to vote for our "DeFi for
                          Capital Markets" panel at CoinDesk Consensus 2024! If
                          you haven't had the chance to vote yet, we encourage
                          you to cast your vote now! Your vote can make the
                          difference. 🗳️ #DeFi #Consensus2024
                        time: 5d 3w
                        title: Bitstamp
                      - likes_count: 22
                        text: >-
                          From emerging talents to industry leaders. We're
                          committed to empowering each individual's career
                          development. Want to hear from our team members? Check
                          out the video. Want to nurture your potential with us?
                          Explore our current open roles. 🔹 Crypto Team Lead
                          (Slovenia & Croatia): https://lnkd.in/dnMm3XWW 🔹
                          Senior Software Engineer - Crypto (Slovenia &
                          Croatia): https://lnkd.in/d38sC7Ui 🔹 Senior Technical
                          Support Engineer (Slovenia & Croatia):
                          https://lnkd.in/dv3vmP3P 🔹 Cloud Operations Engineer
                          - Crypto (Slovenia & Croatia):
                          https://lnkd.in/d7M7_f5h 🔹 Pricing, Liquidity and
                          Markets Manager (Slovenia & UK):
                          https://lnkd.in/dNSB4Tjp 🔹 Business Operations and
                          Strategy Manager - Asset Listing (Slovenia & UK):
                          https://lnkd.in/g_7n_e3T Explore our career page:
                          https://lnkd.in/d6MTnSFi #WorkingAtBitstamp
                        time: 6d
                        title: Bitstamp
                        videos:
                          - null
                      - comments_count: 1
                        likes_count: 31
                        text: >-
                          We're introducing our latest listing: LMWR, PEPE,
                          BLUR, and VEXT. LMWR empowers content creators, PEPE
                          adds fun to crypto, BLUR brings novelty to the NFTs
                          and VEXT fuels community decisions. Each carefully
                          selected crypto assets enriches our platform,
                          showcasing our commitment to providing a wide range of
                          options. Learn more about the assets and the listing
                          schedule here: https://lnkd.in/dykJtR4a
                        time: 1w
                        title: Bitstamp
                        videos:
                          - null
                      - comments_count: 1
                        images:
                          - >-
                            https://media.licdn.com/dms/image/D4E22AQEKWK29cExlpw/feedshare-shrink_2048_1536/0/1707825435726?e=2147483647&v=beta&t=Iv0y53aveHyYisxmD0PdAiOKe5t15QSrgfR7n5GO2p4
                          - >-
                            https://media.licdn.com/dms/image/D4E22AQEVuGD2tPJufA/feedshare-shrink_800/0/1707825436409?e=2147483647&v=beta&t=jAc4jsRxdEUHfV4Z7jy7JwbaZBieFDRq63UBz9l9tkk
                          - >-
                            https://media.licdn.com/dms/image/D4E22AQE4-eD8H1CzDA/feedshare-shrink_800/0/1707825440601?e=2147483647&v=beta&t=RbJSdDRDxL4mT5-j1UdR4YWjplzdlDBlexmQZTfU8qk
                          - >-
                            https://media.licdn.com/dms/image/D4E22AQEX_VenEJ3dPQ/feedshare-shrink_800/0/1707825438877?e=2147483647&v=beta&t=0bHUwuFXFmgslpdrMxFbdjznxnWpNRPhfhleS_PP3nw
                          - >-
                            https://media.licdn.com/dms/image/D4E22AQEQyP-Yyo1CyQ/feedshare-shrink_800/0/1707825439584?e=2147483647&v=beta&t=EG4XLvIM2-Y7LMTmpoIgG5zerGEVrWkyDG6lUW9mPqo
                        likes_count: 59
                        text: >-
                          Last week marked an exciting chapter for Bitstamp as
                          we co-hosted a groundbreaking roundtable titled "The
                          Evolution of Payment Technology for a New Global and
                          Digital Era" in collaboration with Brunel University
                          London , spearheaded by Qi . During this dynamic
                          event, we explored the future landscape of payments,
                          bridging the worlds of traditional finance and crypto.
                          A heartfelt thank you to our speakers who ignited
                          enlightening discussions: Mann Matharu and Gurnam
                          Selvarajah from Qi , Monomita Nandy from Brunel
                          University London , Nic Verdino from Cardstream , Nick
                          Philpott from Zodia Markets , Charles Kerrigan from
                          CMS Law Firm LLC , Kari Chaudhry from The Atlantic
                          Society , and our very own James Sullivan and Lenart
                          Dolžan from Bitstamp . Our mission? To pave the way
                          for widespread adoption of crypto payments in today's
                          market. With the inaugural roundtable of this series,
                          we've set the stage for transformative change. In
                          partnership with Qi , we're driving the evolution of
                          payment technology, unlocking new possibilities for
                          businesses and consumers alike. With insightful
                          discussions and strategic collaborations, we're
                          shaping the future of finance together. Come join us!
                        time: 1w
                        title: Bitstamp
                      - comments_count: 2
                        likes_count: 26
                        text: >-
                          Are you looking for a place where your work is
                          challenging and your time is respected? Where you're
                          encouraged to excel professionally without sacrificing
                          your personal life? That's what we aim for at
                          Bitstamp. Watch the video to see how balance is part
                          of our everyday reality. If this sounds like a perfect
                          environment where you can thrive, check our current
                          open roles: ◼ Product Operations Manager (Slovenia):
                          https://lnkd.in/d2vQ9tPi ◼ Crypto Team Lead (Slovenia
                          & Croatia): https://lnkd.in/dnMm3XWW ◼ Software
                          Engineer - Crypto (Slovenia & Croatia):
                          https://lnkd.in/dxqXTKpk ◼ Senior Software Engineer -
                          Crypto (Slovenia & Croatia): https://lnkd.in/d38sC7Ui
                          ◼ Senior Technical Support Engineer (Slovenia &
                          Croatia): https://lnkd.in/dv3vmP3P ◼ QA Engineer -
                          Trading (Slovenia & Croatia): https://lnkd.in/dsQVU7ji
                          ◼ Cloud Operations Engineer - Crypto (Slovenia &
                          Croatia): https://lnkd.in/d7M7_f5h ◼ Pricing,
                          Liquidity and Markets Manager (Slovenia & UK):
                          https://lnkd.in/dNSB4Tjp ◼ Business Operations and
                          Strategy Manager - Asset Listing (Slovenia & UK):
                          https://lnkd.in/g_7n_e3T Explore our career page:
                          https://lnkd.in/d6MTnSFi #WorkingAtBitstamp
                        time: 1w
                        title: Bitstamp
                        videos:
                          - null
                      - images:
                          - >-
                            https://media.licdn.com/dms/image/D5622AQGaDA-jWHS00w/feedshare-shrink_800/0/1707396968499?e=2147483647&v=beta&t=Edse9Bu4qZfP8yWlB6XM6xhLQYS0D1UUNlyusH-afiM
                        likes_count: 19
                        text: >-
                          We can't wait for tonight's event with Copper.co ,
                          where we'll be hosting an exclusive panel and wine
                          tasting experience for our guests. Get ready to
                          explore the latest insights about how to navigate the
                          crypto vineyard. Our Head of Strategic Partnerships
                          and Corp Dev, Eva Gartner , will join our expert
                          panelists in diving deep into key topics such as
                          security, risk mitigation, and liquidity in crypto
                          custody. Raise your glass to a sophisticated blend of
                          insights, as we pair the complexity of crypto custody
                          with the finesse of wine appreciation, creating a
                          symphony of success in the world of digital assets!
                          Please note this evening's event is currently at full
                          capacity. If you are interested in attending, please
                          reach out to the team and you'll be added to the
                          waitlist.
                        time: 1w Edited
                        title: Bitstamp
                      - external_link: >-
                          https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fblog%2Ebitstamp%2Enet%2Fpost%2Fbitstamp-monthly-briefing-january-2024%2F&urlhash=q2zL&trk=organization_guest_main-feed-card_feed-article-content
                        images:
                          - >-
                            https://media.licdn.com/dms/image/sync/D4D27AQHQLNtdTnqyXA/articleshare-shrink_800/0/1707322864200?e=2147483647&v=beta&t=ln_cWSvNOtrGWj2CqbsT2wwV5b-Mx0M44JlUOFmHE2s
                        likes_count: 19
                        text: >-
                          January's crypto insights from Bitstamp are here. ⬇ In
                          this month’s briefing, we delve into the market
                          dynamics reshaping the crypto world and take an
                          in-depth look at the nuances of crypto lending and
                          borrowing. We aim to provide valuable insights into
                          these key areas, preparing our readers for informed
                          decision-making in 2024. Discover our latest insights
                          in the monthly briefing: https://lnkd.in/dEuMg8Rz
                        time: 1w
                        title: Bitstamp
                      - comments_count: 2
                        images:
                          - >-
                            https://media.licdn.com/dms/image/D4D22AQF-6xcJCu5tyQ/feedshare-shrink_800/0/1707307881815?e=2147483647&v=beta&t=SeY1P70tTqomRvQanx4bGWuoRQYvVaACw1VzmEwvMDs
                        likes_count: 29
                        text: >-
                          Reminder to Register for Our First LinkedIn Audio
                          Event! 📢 🗓️ Coming Up: Thursday, February 8th at 3
                          PM GMT! Join us as we dive into "Institutional
                          Adoption of Crypto: Regulations and Growth
                          Opportunities in 2024" Featuring an exceptional lineup
                          of speakers: 🎙️ Simon Barnby , Chloé Nightingale ,
                          Amor Sexton , Soledad Contreras , Kevin de Patoul ,
                          Danny Bailey , Coby L. , Radoslav Poljasevic and Olly
                          Wilson 🤝 Sponsored by Blockchain.com 🔗 Be sure to
                          click "attend" in the event link below
                          https://lnkd.in/dYNDebUY
                        time: 2w
                        title: Zebu Live - London Web3 Conference
                      - external_link: >-
                          https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fcryptonews%2Ecom%2Fexclusives%2Fbobby-zagotta-ceo-of-bitstamp-on-bitcoin-etf-the-halving-defi-for-capital-markets-and-2024-predictions-ep-304%2Ehtm&urlhash=72HL&trk=organization_guest_main-feed-card_feed-article-content
                        images:
                          - >-
                            https://media.licdn.com/dms/image/sync/D5627AQEzMtolOYZaJg/articleshare-shrink_800/0/1708013936402?e=2147483647&v=beta&t=crppgb7R5w6HQ0GUEpkXYLhFsVWBu-K1Y9ta7I7Idn4
                        likes_count: 38
                        text: >-
                          I recently sat down with Matt Zahab from Cryptonews to
                          discuss a range of topics, including the potential of
                          Bitcoin ETFs, the impact of the upcoming Halving, and
                          how DeFi is shaping the future of capital markets. I
                          also shared some thoughts on what 2024 might hold for
                          the crypto space. It was a thought-provoking
                          conversation that I believe offers valuable insights
                          for anyone interested in the future of finance. Dive
                          into the full interview: https://lnkd.in/gtyUtMGt
                          #Podcast #Bitcoin Bitstamp
                        time: 2w
                        title: Bobby Zagotta
                    url: https://www.linkedin.com/company/bitstamp
                    website: https://www.bitstamp.net/
        '400':
          description: Invalid request parameters
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                invalid_request:
                  value:
                    error: Invalid request parameters
        '401':
          description: User authentication is required
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                unauthorized:
                  value:
                    error: User authentication is required
        '404':
          description: Snapshot not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                snapshot_not_found:
                  value:
                    error: Snapshot not found
        '409':
          description: Snapshot is not ready for download
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                snapshot_not_ready:
                  value:
                    error: Snapshot is not ready for download
components:
  schemas:
    DatasetSnapshotContent:
      type: object
      example:
        about: >-
          Bitstamp is the world’s longest-running cryptocurrency exchange,
          continuously supporting the Bitcoin economy since 2011. With a proven
          track record and mature approach to the industry, Bitstamp provides a
          secure and transparent venue to over four million customers and
          enables partners to access emerging crypto markets through time-proven
          infrastructure. NMLS ID: 1905429 View more on the NMLS website here:
          https://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/1905429
        affiliated: []
        company_id: '2734818'
        company_size: 501-1,000 employees
        country_code: LU
        crunchbase_url: >-
          https://www.crunchbase.com/organization/bitstamp?utm_source=linkedin&utm_medium=referral&utm_campaign=linkedin_companies&utm_content=profile_cta_anon&trk=funding_crunchbase
        description: "Bitstamp | 30,341 followers on LinkedIn. World&#39;s longest-running crypto exchange | Bitstamp is the world’s longest-running cryptocurrency exchange, continuously supporting the Bitcoin economy since 2011. With a proven track record and mature approach to the industry, Bitstamp provides a secure and transparent venue to over four million customers and enables partners to access emerging crypto markets through time-proven infrastructure.\n\n\n\n\nNMLS ID:\t1905429\nView more on the NMLS website here: https://www.nmlsconsumeraccess.org/EntityDetails.aspx/COMPANY/1905429"
        employees:
          - img: >-
              https://media.licdn.com/dms/image/D4E03AQGixwSI9R6RuQ/profile-displayphoto-shrink_100_100/0/1701888289576?e=2147483647&v=beta&t=JCC9EZgKl5VWFcV_qdHIlvE7ZScFDTQeMOcrMrmU5TA
            link: https://ae.linkedin.com/in/jsgreenwood?trk=org-employees
            subtitle: Executive leadership & digital transformation
            title: James Greenwood
          - img: >-
              https://media.licdn.com/dms/image/C4E03AQGD22qBJsQ-qw/profile-displayphoto-shrink_100_100/0/1524161393516?e=2147483647&v=beta&t=OSS74hoSvrpwsPjEuuF0AmafkMxX9gf_-j5w4XHXG8o
            link: https://uk.linkedin.com/in/benjamin-parr-940491?trk=org-employees
            subtitle: Global CMO in Crypto.
            title: Benjamin Parr
          - img: >-
              https://media.licdn.com/dms/image/C4D03AQFdUs4Av5rygg/profile-displayphoto-shrink_100_100/0/1516264422356?e=2147483647&v=beta&t=UOtNggS62Q8IyXGN4PosDnhqOhQjJN8AHRBB78zLlXs
            link: https://si.linkedin.com/in/dominikznidar?trk=org-employees
            subtitle: Senior backend developer
            title: Dominik Znidar
          - img: >-
              https://media.licdn.com/dms/image/C4D03AQFFTmCpr_pIJQ/profile-displayphoto-shrink_100_100/0/1619005680916?e=2147483647&v=beta&t=Waxiqdk9WwM6YR2zD9c_k3KphlAocoylB8k2FU832pY
            link: >-
              https://lu.linkedin.com/in/stephen-bearpark-27aa5b?trk=org-employees
            subtitle: Chief Financial Officer at Bitstamp
            title: Stephen Bearpark
        employees_in_linkedin: 365
        followers: 30341
        formatted_locations:
          - Luxembourg, Luxembourg L-2520, LU
        founded: 2011
        funding:
          last_round_date: '2023-06-24T00:00:00.000Z'
          last_round_type: Corporate round
          rounds: 3
        get_directions_url:
          - directions_url: >-
              https://www.bing.com/maps?where=Luxembourg+L-2520+Luxembourg+LU&trk=org-locations_url
        headquarters: Luxembourg, Luxembourg
        id: bitstamp
        image: >-
          https://media.licdn.com/dms/image/D4D3DAQFefkROuFwk5A/image-scale_191_1128/0/1697616530874/bitstamp_cover?e=2147483647&v=beta&t=R9eU5nQ8J-F3kbGES6-aVLhyLnQQ22lTFwhcNOd0fvg
        industries: Financial Services
        input:
          url: https://www.linkedin.com/company/2734818
        investors:
          - Ripple
        locations:
          - Luxembourg, Luxembourg L-2520, LU
        logo: >-
          https://media.licdn.com/dms/image/D4D0BAQF_ZNbRZzKn0Q/company-logo_200_200/0/1704443361832/bitstamp_logo?e=2147483647&v=beta&t=ON2r3XfdPTbdlCABksfDNCedtHSkO2z9ReQCEI3ihN0
        name: Bitstamp
        organization_type: Privately Held
        similar:
          - Links: https://www.linkedin.com/company/krakenfx?trk=similar-pages
            subtitle: Financial Services
            title: Kraken Digital Asset Exchange
          - Links: https://vg.linkedin.com/company/bitfinex?trk=similar-pages
            subtitle: Financial Services
            title: Bitfinex
          - Links: https://sc.linkedin.com/company/kucoin?trk=similar-pages
            subtitle: Financial Services
            title: KuCoin Exchange
          - Links: https://www.linkedin.com/company/bybitexchange?trk=similar-pages
            subtitle: Financial Services
            title: Bybit
          - Links: https://www.linkedin.com/company/geminitrust?trk=similar-pages
            location: New York, NY
            subtitle: Financial Services
            title: Gemini
          - Links: https://www.linkedin.com/company/coinbase?trk=similar-pages
            subtitle: Internet Publishing
            title: Coinbase
          - Links: https://www.linkedin.com/company/binance?trk=similar-pages
            subtitle: Software Development
            title: Binance
          - Links: https://www.linkedin.com/company/okxofficial?trk=similar-pages
            subtitle: IT Services and IT Consulting
            title: OKX
          - Links: https://ky.linkedin.com/company/gateio?trk=similar-pages
            subtitle: Financial Services
            title: Gate.io
          - Links: >-
              https://sc.linkedin.com/company/htxglobalofficial?trk=similar-pages
            subtitle: Financial Services
            title: HTX
        slogan: World's longest-running crypto exchange
        specialties: null
        sphere: Financial Services
        stock_info: null
        type: Privately Held
        updates:
          - comments_count: 5
            external_link: >-
              https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fen%2Ethebigwhale%2Eio%2Farticle-en%2Fjean-baptiste-graftieaux-bitstamp-we-are-going-to-launch-a-fully-regulated-derivatives-offering&urlhash=0UL3&trk=organization_guest_main-feed-card_feed-article-content
            images:
              - >-
                https://media.licdn.com/dms/image/sync/D4E27AQEZaBxV1lGFPQ/articleshare-shrink_800/0/1707981346426?e=2147483647&v=beta&t=Y3ZngwpKLa7Xoz6TzgVNzJZYmMk6Fdom59LHlvbZ3Ns
            likes_count: 89
            text: >-
              In an exclusive interview with The Big Whale our CEO, JB
              Graftieaux discusses our commitment to expanding services for
              businesses announcing "We are going to launch a fully regulated
              derivatives offering." JB Graftieaux highlights Bitstamp's role in
              driving the evolution of payment technology, particularly for
              businesses looking to embrace cryptocurrencies. With a focus on
              expanding services for both B2B and B2B2C clients, Bitstamp
              provides comprehensive solutions to empower businesses with the
              tools and resources they need to thrive in today's rapidly
              evolving financial landscape. From partnering with market players
              like the Stuttgart Stock Exchange and Revolut to offering
              white-label solutions for banks, Bitstamp is at the forefront of
              facilitating institutional adoption of cryptocurrencies. With a
              commitment to regulatory compliance and a customer-centric
              approach, we're dedicated to providing trusted, secure, and
              innovative solutions that meet the diverse needs of our clients.
              Read the full interview here: https://lnkd.in/dgW8FPtN
            time: 5d
            title: Bitstamp
          - external_link: >-
              https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fconsensus2024%2Ecoindesk%2Ecom%2Fcommunity-session-voting%2F&urlhash=BzoD&trk=organization_guest_main-feed-card_reshare_feed-article-content
            images:
              - >-
                https://media.licdn.com/dms/image/sync/D5627AQE38PPAJZjCag/articleshare-shrink_800/0/1708030264958?e=2147483647&v=beta&t=pv8BCKVgL_XH4cEPcCCGrqax1jHeAGPQ1f16oSN24Bc
            likes_count: 1
            text: >-
              🔔 Today is the last day to vote for our "DeFi for Capital
              Markets" panel at CoinDesk Consensus 2024! If you haven't had the
              chance to vote yet, we encourage you to cast your vote now! Your
              vote can make the difference. 🗳️ #DeFi #Consensus2024
            time: 5d 3w
            title: Bitstamp
          - likes_count: 22
            text: >-
              From emerging talents to industry leaders. We're committed to
              empowering each individual's career development. Want to hear from
              our team members? Check out the video. Want to nurture your
              potential with us? Explore our current open roles. 🔹 Crypto Team
              Lead (Slovenia & Croatia): https://lnkd.in/dnMm3XWW 🔹 Senior
              Software Engineer - Crypto (Slovenia & Croatia):
              https://lnkd.in/d38sC7Ui 🔹 Senior Technical Support Engineer
              (Slovenia & Croatia): https://lnkd.in/dv3vmP3P 🔹 Cloud Operations
              Engineer - Crypto (Slovenia & Croatia): https://lnkd.in/d7M7_f5h
              🔹 Pricing, Liquidity and Markets Manager (Slovenia & UK):
              https://lnkd.in/dNSB4Tjp 🔹 Business Operations and Strategy
              Manager - Asset Listing (Slovenia & UK): https://lnkd.in/g_7n_e3T
              Explore our career page: https://lnkd.in/d6MTnSFi
              #WorkingAtBitstamp
            time: 6d
            title: Bitstamp
            videos:
              - null
          - comments_count: 1
            likes_count: 31
            text: >-
              We're introducing our latest listing: LMWR, PEPE, BLUR, and VEXT.
              LMWR empowers content creators, PEPE adds fun to crypto, BLUR
              brings novelty to the NFTs and VEXT fuels community decisions.
              Each carefully selected crypto assets enriches our platform,
              showcasing our commitment to providing a wide range of options.
              Learn more about the assets and the listing schedule here:
              https://lnkd.in/dykJtR4a
            time: 1w
            title: Bitstamp
            videos:
              - null
          - comments_count: 1
            images:
              - >-
                https://media.licdn.com/dms/image/D4E22AQEKWK29cExlpw/feedshare-shrink_2048_1536/0/1707825435726?e=2147483647&v=beta&t=Iv0y53aveHyYisxmD0PdAiOKe5t15QSrgfR7n5GO2p4
              - >-
                https://media.licdn.com/dms/image/D4E22AQEVuGD2tPJufA/feedshare-shrink_800/0/1707825436409?e=2147483647&v=beta&t=jAc4jsRxdEUHfV4Z7jy7JwbaZBieFDRq63UBz9l9tkk
              - >-
                https://media.licdn.com/dms/image/D4E22AQE4-eD8H1CzDA/feedshare-shrink_800/0/1707825440601?e=2147483647&v=beta&t=RbJSdDRDxL4mT5-j1UdR4YWjplzdlDBlexmQZTfU8qk
              - >-
                https://media.licdn.com/dms/image/D4E22AQEX_VenEJ3dPQ/feedshare-shrink_800/0/1707825438877?e=2147483647&v=beta&t=0bHUwuFXFmgslpdrMxFbdjznxnWpNRPhfhleS_PP3nw
              - >-
                https://media.licdn.com/dms/image/D4E22AQEQyP-Yyo1CyQ/feedshare-shrink_800/0/1707825439584?e=2147483647&v=beta&t=EG4XLvIM2-Y7LMTmpoIgG5zerGEVrWkyDG6lUW9mPqo
            likes_count: 59
            text: >-
              Last week marked an exciting chapter for Bitstamp as we co-hosted
              a groundbreaking roundtable titled "The Evolution of Payment
              Technology for a New Global and Digital Era" in collaboration with
              Brunel University London , spearheaded by Qi . During this dynamic
              event, we explored the future landscape of payments, bridging the
              worlds of traditional finance and crypto. A heartfelt thank you to
              our speakers who ignited enlightening discussions: Mann Matharu
              and Gurnam Selvarajah from Qi , Monomita Nandy from Brunel
              University London , Nic Verdino from Cardstream , Nick Philpott
              from Zodia Markets , Charles Kerrigan from CMS Law Firm LLC , Kari
              Chaudhry from The Atlantic Society , and our very own James
              Sullivan and Lenart Dolžan from Bitstamp . Our mission? To pave
              the way for widespread adoption of crypto payments in today's
              market. With the inaugural roundtable of this series, we've set
              the stage for transformative change. In partnership with Qi ,
              we're driving the evolution of payment technology, unlocking new
              possibilities for businesses and consumers alike. With insightful
              discussions and strategic collaborations, we're shaping the future
              of finance together. Come join us!
            time: 1w
            title: Bitstamp
          - comments_count: 2
            likes_count: 26
            text: >-
              Are you looking for a place where your work is challenging and
              your time is respected? Where you're encouraged to excel
              professionally without sacrificing your personal life? That's what
              we aim for at Bitstamp. Watch the video to see how balance is part
              of our everyday reality. If this sounds like a perfect environment
              where you can thrive, check our current open roles: ◼ Product
              Operations Manager (Slovenia): https://lnkd.in/d2vQ9tPi ◼ Crypto
              Team Lead (Slovenia & Croatia): https://lnkd.in/dnMm3XWW ◼
              Software Engineer - Crypto (Slovenia & Croatia):
              https://lnkd.in/dxqXTKpk ◼ Senior Software Engineer - Crypto
              (Slovenia & Croatia): https://lnkd.in/d38sC7Ui ◼ Senior Technical
              Support Engineer (Slovenia & Croatia): https://lnkd.in/dv3vmP3P ◼
              QA Engineer - Trading (Slovenia & Croatia):
              https://lnkd.in/dsQVU7ji ◼ Cloud Operations Engineer - Crypto
              (Slovenia & Croatia): https://lnkd.in/d7M7_f5h ◼ Pricing,
              Liquidity and Markets Manager (Slovenia & UK):
              https://lnkd.in/dNSB4Tjp ◼ Business Operations and Strategy
              Manager - Asset Listing (Slovenia & UK): https://lnkd.in/g_7n_e3T
              Explore our career page: https://lnkd.in/d6MTnSFi
              #WorkingAtBitstamp
            time: 1w
            title: Bitstamp
            videos:
              - null
          - images:
              - >-
                https://media.licdn.com/dms/image/D5622AQGaDA-jWHS00w/feedshare-shrink_800/0/1707396968499?e=2147483647&v=beta&t=Edse9Bu4qZfP8yWlB6XM6xhLQYS0D1UUNlyusH-afiM
            likes_count: 19
            text: >-
              We can't wait for tonight's event with Copper.co , where we'll be
              hosting an exclusive panel and wine tasting experience for our
              guests. Get ready to explore the latest insights about how to
              navigate the crypto vineyard. Our Head of Strategic Partnerships
              and Corp Dev, Eva Gartner , will join our expert panelists in
              diving deep into key topics such as security, risk mitigation, and
              liquidity in crypto custody. Raise your glass to a sophisticated
              blend of insights, as we pair the complexity of crypto custody
              with the finesse of wine appreciation, creating a symphony of
              success in the world of digital assets! Please note this evening's
              event is currently at full capacity. If you are interested in
              attending, please reach out to the team and you'll be added to the
              waitlist.
            time: 1w Edited
            title: Bitstamp
          - external_link: >-
              https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fblog%2Ebitstamp%2Enet%2Fpost%2Fbitstamp-monthly-briefing-january-2024%2F&urlhash=q2zL&trk=organization_guest_main-feed-card_feed-article-content
            images:
              - >-
                https://media.licdn.com/dms/image/sync/D4D27AQHQLNtdTnqyXA/articleshare-shrink_800/0/1707322864200?e=2147483647&v=beta&t=ln_cWSvNOtrGWj2CqbsT2wwV5b-Mx0M44JlUOFmHE2s
            likes_count: 19
            text: >-
              January's crypto insights from Bitstamp are here. ⬇ In this
              month’s briefing, we delve into the market dynamics reshaping the
              crypto world and take an in-depth look at the nuances of crypto
              lending and borrowing. We aim to provide valuable insights into
              these key areas, preparing our readers for informed
              decision-making in 2024. Discover our latest insights in the
              monthly briefing: https://lnkd.in/dEuMg8Rz
            time: 1w
            title: Bitstamp
          - comments_count: 2
            images:
              - >-
                https://media.licdn.com/dms/image/D4D22AQF-6xcJCu5tyQ/feedshare-shrink_800/0/1707307881815?e=2147483647&v=beta&t=SeY1P70tTqomRvQanx4bGWuoRQYvVaACw1VzmEwvMDs
            likes_count: 29
            text: >-
              Reminder to Register for Our First LinkedIn Audio Event! 📢 🗓️
              Coming Up: Thursday, February 8th at 3 PM GMT! Join us as we dive
              into "Institutional Adoption of Crypto: Regulations and Growth
              Opportunities in 2024" Featuring an exceptional lineup of
              speakers: 🎙️ Simon Barnby , Chloé Nightingale , Amor Sexton ,
              Soledad Contreras , Kevin de Patoul , Danny Bailey , Coby L. ,
              Radoslav Poljasevic and Olly Wilson 🤝 Sponsored by Blockchain.com
              🔗 Be sure to click "attend" in the event link below
              https://lnkd.in/dYNDebUY
            time: 2w
            title: Zebu Live - London Web3 Conference
          - external_link: >-
              https://www.linkedin.com/redir/redirect?url=https%3A%2F%2Fcryptonews%2Ecom%2Fexclusives%2Fbobby-zagotta-ceo-of-bitstamp-on-bitcoin-etf-the-halving-defi-for-capital-markets-and-2024-predictions-ep-304%2Ehtm&urlhash=72HL&trk=organization_guest_main-feed-card_feed-article-content
            images:
              - >-
                https://media.licdn.com/dms/image/sync/D5627AQEzMtolOYZaJg/articleshare-shrink_800/0/1708013936402?e=2147483647&v=beta&t=crppgb7R5w6HQ0GUEpkXYLhFsVWBu-K1Y9ta7I7Idn4
            likes_count: 38
            text: >-
              I recently sat down with Matt Zahab from Cryptonews to discuss a
              range of topics, including the potential of Bitcoin ETFs, the
              impact of the upcoming Halving, and how DeFi is shaping the future
              of capital markets. I also shared some thoughts on what 2024 might
              hold for the crypto space. It was a thought-provoking conversation
              that I believe offers valuable insights for anyone interested in
              the future of finance. Dive into the full interview:
              https://lnkd.in/gtyUtMGt #Podcast #Bitcoin Bitstamp
            time: 2w
            title: Bobby Zagotta
        url: https://www.linkedin.com/company/bitstamp
        website: https://www.bitstamp.net/
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Use your Bright Data API Key as a Bearer token in the Authorization
        header.


        **How to authenticate:**

        1. Obtain your API Key from the Bright Data account settings at
        https://brightdata.com/cp/setting/users

        2. Include the API Key in the Authorization header of your requests

        3. Format: `Authorization: Bearer YOUR_API_KEY`


        **Example:**

        ```

        Authorization: Bearer
        b5648e1096c6442f60a6c4bbbe73f8d2234d3d8324554bd6a7ec8f3f251f07df

        ```


        Learn how to get your Bright Data API key:
        https://docs.brightdata.com/api-reference/authentication
      bearerFormat: API Key

````