Get magic link details
curl --request GET \
--url https://m2m-backend-qa.up.railway.app/partner/links/{linkId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://m2m-backend-qa.up.railway.app/partner/links/{linkId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://m2m-backend-qa.up.railway.app/partner/links/{linkId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.up.railway.app/partner/links/{linkId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"linkId": "link_acme_a1b2c3d4e5f6",
"referenceId": "user-12345",
"status": "opened",
"url": "https://widget.m2m.leapfinancial.com/link_acme_a1b2c3d4e5f6/m2m-basic",
"expiresAt": "2026-02-11T12:00:00.000Z",
"createdAt": "2026-02-10T12:00:00.000Z",
"openedAt": "2026-02-10T13:00:00.000Z",
"revokedAt": "<string>",
"userData": {
"name": {},
"idType": "INE",
"idNumber": "****6789",
"dob": "1990-05-15",
"paymentMethod": {},
"idImageUrl": "<string>"
},
"userId": "user_acme_x1y2z3",
"user": {
"userId": "user_acme_x1y2z3",
"status": "active",
"cipStatus": "verified",
"cipProvider": "kentucky",
"cipVerifiedAt": "2026-02-10T14:00:00.000Z",
"cipResult": {}
},
"operation": {
"operationId": "op_acme_abc123",
"status": "completed",
"amount": {}
},
"metadata": {}
}
}Partner - Magic Links
Get magic link details
Returns full details of a specific magic link including pre-filled user data (masked), associated user CIP verification status, and operation summary if a transfer was initiated.
GET
/
partner
/
links
/
{linkId}
Get magic link details
curl --request GET \
--url https://m2m-backend-qa.up.railway.app/partner/links/{linkId} \
--header 'X-API-Key: <api-key>'import requests
url = "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://m2m-backend-qa.up.railway.app/partner/links/{linkId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://m2m-backend-qa.up.railway.app/partner/links/{linkId}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://m2m-backend-qa.up.railway.app/partner/links/{linkId}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://m2m-backend-qa.up.railway.app/partner/links/{linkId}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"linkId": "link_acme_a1b2c3d4e5f6",
"referenceId": "user-12345",
"status": "opened",
"url": "https://widget.m2m.leapfinancial.com/link_acme_a1b2c3d4e5f6/m2m-basic",
"expiresAt": "2026-02-11T12:00:00.000Z",
"createdAt": "2026-02-10T12:00:00.000Z",
"openedAt": "2026-02-10T13:00:00.000Z",
"revokedAt": "<string>",
"userData": {
"name": {},
"idType": "INE",
"idNumber": "****6789",
"dob": "1990-05-15",
"paymentMethod": {},
"idImageUrl": "<string>"
},
"userId": "user_acme_x1y2z3",
"user": {
"userId": "user_acme_x1y2z3",
"status": "active",
"cipStatus": "verified",
"cipProvider": "kentucky",
"cipVerifiedAt": "2026-02-10T14:00:00.000Z",
"cipResult": {}
},
"operation": {
"operationId": "op_acme_abc123",
"status": "completed",
"amount": {}
},
"metadata": {}
}
}Authorizations
Your partner API key. Use m2m_test_* keys for the sandbox environment.
Path Parameters
Unique magic link identifier
Example:
"link_acme_a1b2c3d4e5f6"
⌘I