Skip to main content
GET
/
cash-ins
List cash-ins
curl --request GET \
  --url https://api.polygon.technology/v0.9/cash-ins \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "cash": {
        "locationId": "<string>",
        "locationReference": "<string>"
      },
      "createdAt": "2023-11-07T05:31:56Z",
      "customerId": "<string>",
      "destination": {
        "amountGross": "<string>",
        "amountNet": "<string>",
        "asset": "<string>",
        "feesDeducted": {
          "developer": "<string>",
          "gas": "<string>",
          "oms": "<string>",
          "total": "<string>"
        },
        "network": "<string>",
        "wallet": {
          "blockchainAddress": "<string>",
          "externalAccount": "<string>",
          "id": "<string>"
        }
      },
      "id": "<string>",
      "location": {
        "address": "<string>",
        "name": "<string>"
      },
      "source": {
        "asset": "<string>",
        "amount": "<string>",
        "amountGross": "<string>",
        "amountNet": "<string>",
        "email": "<string>",
        "feesDeducted": {
          "developer": "<string>",
          "gas": "<string>",
          "oms": "<string>",
          "total": "<string>"
        },
        "indicatedAmount": "<string>",
        "network": "<string>"
      },
      "updatedAt": "2023-11-07T05:31:56Z",
      "completedAt": "2023-11-07T05:31:56Z",
      "depositInstructions": {
        "code": "<string>",
        "expiresAt": "2023-11-07T05:31:56Z",
        "locationAddress": "<string>",
        "locationName": "<string>"
      },
      "developerFees": [
        {
          "amount": "<string>",
          "flatFee": "<string>",
          "id": "<string>",
          "percentage": "<string>",
          "wallet": "<string>"
        }
      ],
      "metadata": {},
      "omsFeeSchedule": {
        "entries": [
          {
            "type": "<string>",
            "amount": "<string>",
            "rate": "<string>"
          }
        ],
        "feeCurrency": "<string>"
      },
      "rates": {
        "effectiveRate": "<string>",
        "exchangeRate": "<string>",
        "pair": "<string>"
      },
      "sponsorGas": true,
      "sponsorGasCost": "<string>",
      "transactionId": "<string>"
    }
  ],
  "hasMore": true,
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Token from POST /auth/token

Query Parameters

customerId
string
status
string
type
enum<string>[]
Available options:
cryptoToCrypto,
fiatToCrypto,
cryptoToFiat
createdAfter
string<date-time>
createdBefore
string<date-time>

Free-text search. Matches cash-in id, customer id, or customer email.

q
string

Alias for search.

limit
integer<int32>
cursor
string

Response

200 - application/json

The request has succeeded.

data
object[]
required
hasMore
boolean
required
nextCursor
string