Skip to main content
GET
/
internal
/
views
/
auto-transactions
List auto account transactions with customer details (internal view)
curl --request GET \
  --url https://api.platform.dakota.xyz/internal/views/auto-transactions \
  --header 'x-api-key: <api-key>'
{
  "data": [
    {
      "id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "type": "onramp",
      "status": "pending",
      "customer_id": "1NFHrqBHb3cTfLVkFSGmHZqdDPi",
      "customer_name": "<string>",
      "input_asset": "<string>",
      "output_asset": "<string>",
      "initial_amount": "<string>",
      "outgoing_amount": "<string>",
      "exchange_rate": "<string>",
      "created_at": 123,
      "failure_reason": "<string>",
      "bank_name": "<string>",
      "routing_number": "<string>",
      "wire_routing_number": "<string>",
      "account_number": "<string>",
      "iban": "<string>",
      "bic": "<string>",
      "bank_address_line1": "<string>",
      "bank_address_line2": "<string>",
      "bank_address_line3": "<string>",
      "bank_address_city": "<string>",
      "bank_address_region": "<string>",
      "bank_address_postal_code": "<string>",
      "bank_address_country": "<string>",
      "external_fee": "<string>",
      "external_fee_asset": "<string>",
      "client_fee": "<string>",
      "client_fee_asset": "<string>",
      "dakota_fee": "<string>",
      "dakota_fee_asset": "<string>",
      "gas_fee": "<string>",
      "gas_fee_asset": "<string>",
      "subtotal_amount": "<string>",
      "converted_amount": "<string>",
      "imad": "<string>",
      "fiat_rail": "ach",
      "deposit_tx_hash": "<string>",
      "tx_hash": "<string>",
      "from_crypto_address": "<string>",
      "to_crypto_address": "<string>",
      "from_network_id": "ethereum-mainnet",
      "to_network_id": "ethereum-mainnet",
      "updated_at": 123,
      "completed_at": 123
    }
  ],
  "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

Response

A paginated list of auto account transactions with customer details

Wrapper for paginated list responses

data
object[]
required

List of objects returned by the API

meta
object
required

Meta information about the response