Skip to main content
GET
/
v1
/
paymentIntents
/
{id}
Get a payment intent
curl --request GET \
  --url https://api-sandbox.circle.com/v1/paymentIntents/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "amount": {
      "amount": "3.14",
      "currency": "USD"
    },
    "settlementCurrency": "USD",
    "paymentMethods": [
      {
        "type": "blockchain",
        "chain": "ALGO",
        "address": "0x8381470ED67C3802402dbbFa0058E8871F017A6F"
      }
    ],
    "id": "b8627ae8-732b-4d25-b947-1df8f4007a29",
    "amountPaid": {
      "amount": "3.14",
      "currency": "USD"
    },
    "amountRefunded": {
      "amount": "3.14",
      "currency": "USD"
    },
    "fees": [
      {
        "type": "blockchainLeaseFee",
        "amount": "3.14",
        "currency": "USD"
      }
    ],
    "paymentIds": [
      "69808f36-3e5e-4f37-bf82-ca79e4d70fc1"
    ],
    "refundIds": [
      "425dca6d-ac79-43b6-b0f9-43fdc51de91b"
    ],
    "timeline": [
      {
        "status": "created",
        "time": "2023-11-07T05:31:56Z",
        "context": "underpaid",
        "reason": "requested_by_merchant"
      }
    ],
    "expiresOn": "2020-04-10T02:13:30.000Z",
    "updateDate": "2020-04-10T02:13:30.000Z",
    "createDate": "2020-04-10T02:13:30.000Z",
    "merchantWalletId": "212000"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string<uuid>
required

Universally unique identifier (UUID v4) of a resource.

Example:

"b3d9d2d5-4c12-4946-a09d-953e82fae2b0"

Response

Successfully retrieved a payment intent.

data
object