Skip to main content
GET
/
transactions
/
one-off
List one-off transactions
curl --request GET \
  --url https://api.platform.dakota.xyz/transactions/one-off \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "customer_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "crypto_address": "0x1234567890abcdef1234567890abcdef12345678",
      "status": "pending",
      "source_network_id": "ethereum-mainnet",
      "source_asset": "USDC",
      "destination_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "destination_asset": "USD",
      "created_at": 1234567890,
      "updated_at": 1234567890,
      "send_amount": "1.24",
      "amount": "1.23",
      "failure_reason": "<string>",
      "receipt": {
        "input": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "output": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "exchange_rate": "<string>",
        "imad": "<string>",
        "omad": "<string>",
        "subtotal": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "converted": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "external_fee": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "dakota_fee": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "client_fee": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "gas_fee": {
          "amount": "<string>",
          "asset": "<string>",
          "network": "<string>"
        },
        "payment_reference": "Invoice payment for services"
      },
      "crypto_details": {
        "source_crypto_address": "<string>",
        "source_network_id": "ethereum-mainnet",
        "destination_crypto_address": "<string>",
        "destination_network_id": "ethereum-mainnet",
        "deposit_transaction_hash": "<string>",
        "transaction_hash": "<string>"
      },
      "completed_at": 1234567890,
      "destination_payment_rail": "ach",
      "payment_reference": "<string>",
      "destination_bank_name": "Chase Bank",
      "destination_account_holder_name": "Acme Corporation",
      "destination_account_number_last_four": "6789",
      "destination_routing_number": "021000021",
      "destination_iban": "GB82WEST12345698765432",
      "destination_bic": "BARCGB22XXX"
    }
  ],
  "meta": {
    "total_count": 100,
    "has_more_after": true,
    "has_more_before": false,
    "limit_reached": false
  }
}

Authorizations

x-api-key
string
header
required

Query Parameters

starting_after
string

A cursor for use in pagination. starting_after is a KSUID for the object you are listing that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with ID 2B5J8KZ9N7M1K3P6Q8R4T7V9, your subsequent call can include starting_after=2B5J8KZ9N7M1K3P6Q8R4T7V9 in order to fetch the next page of the list. KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

ending_before
string

A cursor for use in pagination. ending_before is a KSUID for the object you are listing that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with ID 2B5J8KZ9N7M1K3P6Q8R4T7V9, your subsequent call can include ending_before=2B5J8KZ9N7M1K3P6Q8R4T7V9 in order to fetch the previous page of the list. KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

limit
integer
default:20

A limit on the number of objects to be returned. Limit can range between 1 and 100, and the default is 20.

Required range: 1 <= x <= 100
customer_id
string

Filter transactions by customer ID KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

destination_id
string

Filter transactions by destination ID KSUID is a 27-character globally unique ID that combines a timestamp with a random component. Used for all entity identifiers in the Dakota platform.

Required string length: 27
Example:

"1NFHrqBHb3cTfLVkFSGmHZqdDPi"

status
enum<string>

Filter transactions by status Status of a one-off transaction

Available options:
pending,
processing,
completed,
failed,
cancelled,
reversed,
pending_return,
returned
Example:

"pending"

source_network_id
enum<string>

Filter transactions by source network ID Identifier for a blockchain network

Available options:
ethereum-mainnet,
ethereum-sepolia,
ethereum-goerli,
ethereum-holesky,
solana-mainnet,
solana-devnet,
solana-testnet,
base-mainnet,
base-sepolia,
arbitrum-mainnet,
arbitrum-sepolia,
optimism-mainnet,
optimism-sepolia,
avalanche-mainnet,
avalanche-fuji,
polygon-mainnet,
polygon-amoy
Required string length: 1 - 30
Example:

"ethereum-mainnet"

source_asset
string

Filter transactions by source asset

destination_asset
string

Filter transactions by destination asset

Response

A paginated list of one-off transactions

Wrapper for paginated list responses

data
object[]
required

List of objects returned by the API

meta
object
required

Meta information about the response