GET
/
static_memos
List Static Memos
curl --request GET \
  --url https://api.bridge.xyz/v0/static_memos \
  --header 'Api-Key: <api-key>'
{
  "count": 123,
  "data": [
    {
      "id": "<string>",
      "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"
      },
      "created_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

Api-Key
string
header
required

Query Parameters

status
enum<string>

Limit results to those with the given activation status

Available options:
activated,
deactivated
limit
integer

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

starting_after
string

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_before
string

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

200 - application/json

List of Static Memos

The response is of type object.