LogoLogo
Back to AppHelp Center
  • Getting Started
    • Welcome
  • OrdinalsBot API
    • Overview
    • Libraries
    • Template-App
    • Signet
    • Testnet
    • Getting Prices
      • Getting Prices (Legacy)
    • Create a Direct Inscription Order
    • Create a Managed Inscription Order
    • Get Order Status
    • Create a Collection
    • Create a Collection Order
    • Create Text Inscription Order
    • Search Inscriptions
    • Check Rare Sats Inventory
    • Referral Scheme
    • Transaction Accelerator
    • Burning Assets
    • Webhooks
    • Order States
    • Order Types
  • Runes
    • Etch
    • Mint
    • Direct Mint
      • 1. Generate Direct Mint PSBT
      • 2. Direct Rune Mint Process PSBT
    • Launchpad
      • Create
      • Mint
      • Get Launchpad
    • Airdrop
  • Token Pay
    • What is TokenPay?
    • API Docs
      • API reference
        • Order
        • Create payment psbt
        • Create burn rune psbt
        • Validate burn rune tx
        • Create burn inscription psbt
        • Utils
          • Checktx
          • Submittx
          • Finalize psbt
        • User
          • Withdrawal
          • Order
            • Rune
          • Account
            • Withdraw
            • Balance
      • Specification
  • Marketplace
    • User Guide: Pre-Inscribed Launchpad API
    • API Docs
      • Data API
    • Editions Launchpad
  • Launchpad API
    • Create Marketplace
    • Create a new Launchpad
    • Retrieve Launch PSBT
    • Confirm Launch
    • Check Allocation
    • Check for Padding Outputs
    • Setup Padding Outputs
    • Create buy offer
    • Confirm buy offer
    • Get Launch Info
  • Sat Scanner API
    • Find Special Ranges
    • Find Special Ranges UTXO
    • Supported Satributes
  • Sat Extractor
    • Extract
  • BRC20 / BRC2.0PROG
    • OPI API
    • Bitcoin Remix
  • SNS API
    • SNS API
  • Mempool API
    • Mempool API
  • TAP PROTOCOL
    • Tap Reader API
  • UTXO
    • Split
  • User Guide
    • Inscribe your first Ordinal
    • Receiving Payments
  • Knowledge Base
    • Ordinals
      • What is an Ordinal?
      • Satoshi Rarity
      • What are BRC-20 Tokens?
      • Image Optimisation
      • Pixel Art
    • Bitcoin
      • Unspent Transaction Output (UTXO)
  • Official Links
    • Twitter
    • Discord
Powered by GitBook
On this page
  1. Marketplace
  2. API Docs

Data API

PreviousAPI DocsNextEditions Launchpad

Last updated 21 days ago

Api for getting marketplace data stats

Get collection activity

get

Retrieves trading activity history for a specific collection based on its slug

Query parameters
slugstringRequired

The slug identifier of the collection

Example: satoshibles-the-ordinals
startDatestring · date | nullableOptional

Filter activities from this date (format YYYY-MM-DD). By default, it will filter activities from the last 7 days.

Example: 2023-05-15
pageintegerOptional

Page number for pagination

Default: 0Example: 0
limitinteger · min: 20 · max: 100Optional

Number of records to return per page (between 20 and 100)

Default: 100Example: 50
orderstring · enumOptional

Sort order for activities (ascending or descending)

Default: descExample: descPossible values:
Responses
200
Successfully retrieved collection activity
application/json
400
Bad request - validation error
application/json
get
GET /marketplace/data/collections/activity HTTP/1.1
Host: api.ordinalsbot.com
Accept: */*
[
  {
    "inscription_id": "a7728650494b3248c9ae858ea75ea6db5645326a314610f6e741931e48955349i125",
    "inscription_name": "Lunatics #1293",
    "maker_address": "bc1pgnwmg7wplc09cm9fctgmgalu7l4synjh7khwzre9qlcvg5xy0k5qz9mwe3",
    "taker_address": "bc1pfg3a9kqup6r072v88dv70zzd494fnhl03k5a58vye9hwkakp7dgs3rte2e",
    "collection_slug": "lunatics",
    "collection_name": "Lunatics",
    "price": 100000,
    "trade_timestamp": "2025-05-23T12:04:39.396396",
    "transaction_id": "d5606231ca95f33190c1606b83df5b1e1058bc10dbe4603006ac9134b4d87b42",
    "thumbnail_url": "https://ordinalsbot-prod.s3.amazonaws.com/inscription-thumbnails/a7728650494b3248c9ae858ea75ea6db5645326a314610f6e741931e48955349i125.jpeg"
  }
]