Skip to main content
This API allows you to create and manage payment claim links for customers to submit cryptocurrency payment information.
string
Unique identifier with pcl_ prefix (e.g., pcl_abc123def456).
string
Always "payment_claim_link".
string
Link status: active, used, or expired.
string
When the link expires (ISO 8601).
integer
Maximum number of times the link can be used.
integer
Number of times the link has been used.
string
When the link was last used (ISO 8601). null if never used.
string
Additional notes or metadata.
The full URL to share with the customer.
string
The customer this link belongs to.
string
ID of the resulting payment claim. null if not used.
boolean
Whether the link can still be used.
boolean
Whether the link has expired.
string
When the link was created (ISO 8601).
string
When the link was last updated (ISO 8601).
Retrieves a paginated list of all payment claim links in your account. Links are ordered by creation date (newest first).
integer
default:"1"
Page number for pagination. Results are returned 25 items per page.
Response
Retrieves a specific payment claim link by ID.
string
required
The payment claim link’s ID (e.g., pcl_abc123def456).
Response
Creates a new payment claim link for a customer.
string
required
The customer’s ID (e.g., cust_abc123def456). Must belong to your account.
string
When the link expires (ISO 8601 format). Defaults to 24 hours from now.
integer
default:"1"
Maximum number of times the link can be used. Must be greater than 0.
string
Additional notes or metadata for the link.
Response

Error responses

Customer not found
Invalid max_uses
Deletes a payment claim link.
string
required
The payment claim link’s ID (e.g., pcl_xyz789abc123).
Returns 204 No Content on successful deletion. The usable field indicates whether a link can still be used. A link is usable if:
  • Status is active.
  • Not expired (expires_at is in the future).
  • Use count is less than max_uses.

Usage flow

  1. Create a payment claim link for a customer using their ID.
  2. Share the link with the customer (via email, SMS, etc.).
  3. Customer visits the link and submits their payment information.
  4. Review the submission in your dashboard under Crypto Payment Claims.
  5. Approve or reject the payment claim.
  6. Optionally delete the link if no longer needed.

Sandbox support

The API respects sandbox scoping. If your API token is associated with a sandbox, you can only access links created in that sandbox. Links created in sandbox mode will be isolated from production data.