Skip to main content
curl -X GET https://checkout.noxpay.io/v2/naas/split/{origin_e2e} \
  -H "api-key: <key>" \
  -H "X-Timestamp: 2026-05-27T14:30:00Z" \
  -H "X-Correlation-ID: a1b2c3d4-e5f6-4789-abcd-000000000001" \
  -H "X-Signature: <signed-headers-signature>"
import requests

headers = sign_get_headers(private_key, "a1b2c3d4-e5f6-4789-abcd-000000000001")
headers["api-key"] = "<key>"
response = requests.get(
    "https://checkout.noxpay.io/v2/naas/split/NOXabc123",
    headers=headers,
)
print(response.json())
const headers = signGETHeaders("a1b2c3d4-e5f6-4789-abcd-000000000001");
headers["api-key"] = "<key>";
const response = await fetch("https://checkout.noxpay.io/v2/naas/split/NOXabc123", {
  method: "GET",
  headers,
});
const data = await response.json();
{
  "end2end":        "split-xyz789",
  "origin_e2e":     "NOXabc123",
  "component":      "component.success",
  "state":          "DONE",
  "split_amount":   "12.50",
  "currency":       "USDT_ETH",
  "correlation_id": "a1b2c3d4-e5f6-4789-abcd-000000000001",
  "created_at":     "2026-05-19T14:00:00Z",
  "updated_at":     "2026-05-19T14:01:12Z"
}
{ "error": "Not Found" }

Path parameters

ParameterDescription
origin_e2eThe end2end ID of the originating checkout

Response 200 OK

FieldTypeDescription
end2endstringSplit process ID
origin_e2estringCheckout that triggered this split
componentstringCurrent component in the split workflow
statestringCurrent state
split_amountstringAmount transferred to the master merchant
currencystringAsset code
correlation_idstringCorrelation ID of the sub-merchant relationship
created_atstringISO 8601 creation timestamp
updated_atstringISO 8601 last-updated timestamp
See Split States for all component / state combinations. 404 — split not found or does not belong to this correlation.
curl -X GET https://checkout.noxpay.io/v2/naas/split/{origin_e2e} \
  -H "api-key: <key>" \
  -H "X-Timestamp: 2026-05-27T14:30:00Z" \
  -H "X-Correlation-ID: a1b2c3d4-e5f6-4789-abcd-000000000001" \
  -H "X-Signature: <signed-headers-signature>"
import requests

headers = sign_get_headers(private_key, "a1b2c3d4-e5f6-4789-abcd-000000000001")
headers["api-key"] = "<key>"
response = requests.get(
    "https://checkout.noxpay.io/v2/naas/split/NOXabc123",
    headers=headers,
)
print(response.json())
const headers = signGETHeaders("a1b2c3d4-e5f6-4789-abcd-000000000001");
headers["api-key"] = "<key>";
const response = await fetch("https://checkout.noxpay.io/v2/naas/split/NOXabc123", {
  method: "GET",
  headers,
});
const data = await response.json();
{
  "end2end":        "split-xyz789",
  "origin_e2e":     "NOXabc123",
  "component":      "component.success",
  "state":          "DONE",
  "split_amount":   "12.50",
  "currency":       "USDT_ETH",
  "correlation_id": "a1b2c3d4-e5f6-4789-abcd-000000000001",
  "created_at":     "2026-05-19T14:00:00Z",
  "updated_at":     "2026-05-19T14:01:12Z"
}
{ "error": "Not Found" }