GET /payment-links/{id}

Authentication

Bearer Token API Key (header: X-API-Key)

Path Parameters

id string required path

Responses

200 Payment link details

No response body

404 Not found
curl -X GET 'https://platform-api.anyspend.com/api/v1/payment-links/string' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://platform-api.anyspend.com/api/v1/payment-links/string', {
  method: 'GET',
  headers: {
      "Authorization": "Bearer YOUR_API_TOKEN"
  }
});

const data = await response.json();
console.log(data);
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_TOKEN'
}

response = requests.get('https://platform-api.anyspend.com/api/v1/payment-links/string', headers=headers)
print(response.json())
GET /payment-links/{id}
Ask a question... ⌘I