Ospree docs
API ReferenceWebsiteSocials
  • GETTING STARTED
    • Intro to Ospree
      • What is the Travel Rule?
      • Types of Travel Rule transfers
      • What is a wallet address?
      • What is an Account at Ospree?
      • What is a VASP or CASP?
    • Account
      • Understand user roles
      • Add and manage users
      • Change your password
      • Set up two-factor authentication (2FA)
      • Log in with 2FA-enabled
  • DASHBOARD
    • Overview
    • Travel Rule
      • Start a transfer
      • Search and filter transfers
      • Interoperability
      • Self-hosted wallets
    • Accounts Directory
      • Create an account
      • Edit an account
      • Create a recipient
      • Edit a recipient
      • Add a new wallet
      • VASPs
        • Search and filter
        • Request a VASP
  • OSPREE API
    • Overview
    • API integration flows
    • Authentication
    • Breaking Changes
    • Errors
    • Token Identifier
    • Webhooks
      • Webhook events
      • Webhook request
      • Webhook management
    • Travel Rule
      • Create Transfer
      • List Transfers
      • Retrieve Transfer
      • Update Transfer
      • Action Transfer
    • Accounts Directory
      • Create Account
      • List Accounts
      • Retrieve Account
      • Update Account
      • Remove account
      • Search account
      • Retrieve VASP
      • Search VASP
      • List VASPs
    • Blockchain Analytics
      • Create Address
      • List Addresses
      • Retrieve Address
      • Assign an address to account
      • Create Transaction (Beta)
      • List Transactions (Beta)
      • Retrieve Transaction (Beta)
  • Resources and Help
    • Data pre-validation
    • Sunrise Issue
Powered by GitBook
On this page
  1. OSPREE API
  2. Blockchain Analytics

List Transactions (Beta)

This feature is currently in beta and should not be used in production. For further details please contact support@ospree.io.

GET api/v2/analytics/chains/{chain}/transactions

Retrieve the paginated list of transactions screening results based on the requesting business identity.

Path Parameters

Name
Type
Description
Required

chain

string

Blockchain network name. Example: bitcoin

True

Query Parameters

Name
Type
Description
Required

start_range

string

Starting point for specified data range. Example: 2020-12-09

end_range

string

Ending point for specified data range. Example: 2023-12-09

page

integer

The current page number in pagination. Minimum: 1, Default: 1

size

integer

The size or number of records per page. Minimum: 1, Maximum: 50, Default: 10

sort

string

Criteria for result sorting. Example: -last_modified

Response

{
  "status": "success",
  "data": {
    "items": [
      {
        "risk_ratio": 50,
        "hash": "f24f0e170461545b20c464507113e590a007dd10df087628d8b1842976791d5c",
        "chain": "bitcoin",
        "in_usd": 35552.02552238,
        "symbol": "BTC",
        "last_modified": "2024-02-09T23:33:12.674530+00:00"
      },
      {
        "risk_ratio": 47,
        "hash": "0xc7fe329f0ad81a09276a61b3bc559a725971ffa4ca90b80037ef799006ab1797",
        "chain": "ethereum",
        "in_usd": 168.85432658,
        "symbol": "ETH",
        "last_modified": "2024-02-06T16:51:42.072321+00:00"
      },
      {
        "risk_ratio": 51,
        "hash": "7854c8b197ee8832ca2f21d281b6dc0710d0335e2746b30f63f750e9af716835",
        "chain": "bitcoin",
        "in_usd": 1486596.63241812,
        "symbol": "BTC",
        "last_modified": "2024-02-06T16:48:28.379959+00:00"
      },
      {
        "hash": "6e3e65f8d9ac10374dbf468d3a5e8ace9bbf40317848d9265124a6360dcdbe9b",
        "chain": "stellar",
        "in_usd": 0,
        "symbol": "XLM",
        "last_modified": "2024-02-02T13:46:55.594142+00:00"
      }
    ],
    "pagination": {
      "total": 4,
      "size": 10,
      "page": 1
    }
  },
  "message": "Null"
}

Last updated 1 month ago