Get a commission line
curl --request GET \
--url https://api.introw.io/api/v1/commission-lines/{id} \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.introw.io/api/v1/commission-lines/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.introw.io/api/v1/commission-lines/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "cln_4d5e6f7g8h9i0j1k2l3m4n5o",
"partnerId": "ptn_01HVK6Y8Z8Q7J8J8J8J8J8J8J8",
"payoutId": null,
"description": "Q1 referral bonus",
"amount": "500.00",
"sourceAmount": "10000.00",
"currency": "USD",
"status": "PENDING",
"planName": "Referral plan",
"periodEnd": "2026-03-31T23:59:59.000Z",
"createdAt": "2026-04-05T09:00:00.000Z",
"updatedAt": "2026-04-05T09:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Get a commission line
Returns a single commission line by id, scoped to the authenticated API key organisation.
GET
/
api
/
v1
/
commission-lines
/
{id}
Get a commission line
curl --request GET \
--url https://api.introw.io/api/v1/commission-lines/{id} \
--header 'x-api-key: <api-key>'const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://api.introw.io/api/v1/commission-lines/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.introw.io/api/v1/commission-lines/{id}"
headers = {"x-api-key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text){
"data": {
"id": "cln_4d5e6f7g8h9i0j1k2l3m4n5o",
"partnerId": "ptn_01HVK6Y8Z8Q7J8J8J8J8J8J8J8",
"payoutId": null,
"description": "Q1 referral bonus",
"amount": "500.00",
"sourceAmount": "10000.00",
"currency": "USD",
"status": "PENDING",
"planName": "Referral plan",
"periodEnd": "2026-03-31T23:59:59.000Z",
"createdAt": "2026-04-05T09:00:00.000Z",
"updatedAt": "2026-04-05T09:00:00.000Z"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}⌘I