Skip to main content
GET
/
api
/
v1
/
enterprise
/
transactions
List transactions
curl --request GET \
  --url https://studio.x402layer.cc/api/v1/enterprise/transactions \
  --header 'X-Enterprise-Key: <api-key>'
{
  "transactions": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "total_amount": 123,
      "enterprise_amount": 123,
      "singularity_amount": 123,
      "infra_amount": 123,
      "currency": "<string>",
      "chain": "<string>",
      "tx_hash": "<string>",
      "payer_wallet": "<string>",
      "enterprise_distributed": true,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "pages": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.x402layer.cc/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-Enterprise-Key
string
header
required

Enterprise partner API key with sgl_ent_ prefix. Create keys in the Enterprise Dashboard under API Keys.

Query Parameters

page
integer
default:1

Page number

limit
integer
default:50

Results per page

Required range: x <= 100
type
enum<string>

Filter by transaction type

Available options:
endpoint_creation,
topup,
recharge

Response

Paginated transaction ledger

transactions
object[]
pagination
object