v1

latestOpenAPI 3.0.22026-07-26128245430.3 KB
Static Memos

List Static Memos

List all Static Memo objects

get/static_memos

Query parameters

status'activated' | 'deactivated'

The activation status of the Virtual Account

Limit results to those with the given activation status

limitinteger

The number of items to return (min 1, default 10, max 100)

starting_afterstring

This is a static memo id. If this is specified, the next page that starts with a static memo right AFTER the specified static memo id on the static memo timeline, which is always ordered from the newest to the oldest by creation time, will be returned. This also implies that static memo older than the specified static memo id will be returned (shouldn't be set if ending_before is set)

ending_beforestring

This is a static memo id. If this is specified, the previous page that ends with a static memo right BEFORE the specified static memo id on the static memo timeline, which is always ordered from the newest to the oldest by creation time, will be returned. This also implies that static memo newer than the specified static memo id will be returned (shouldn't be set if starting_after is set)

Response

List of Static Memos

countinteger required

total number of items in data

Example response

{
  "data": [
    {
      "developer_fee_percent": "0.1",
      "source_deposit_instructions": {
        "currency": "usd",
        "payment_rails": [
          "ach_push",
          "wire"
        ],
        "deposit_message": "EXAMPLE_MEMO_MESSAGE",
        "bank_name": "Lead Bank",
        "bank_address": "1801 Main St., Kansas City, MO 64108",
        "bank_beneficiary_name": "Bridge Ventures Inc",
        "bank_beneficiary_address": "21750 Hardy Oak Blvd, Ste 104 PMB 77950, San Antonio, Texas, 78258-4946",
        "bank_account_number": "123456789",
        "bank_routing_number": "87654321"
      },
      "destination": {
        "currency": "usdc",
        "payment_rail": "polygon",
        "address": "0xdeadbeef"
      }
    }
  ]
}