curl --request POST \
--url https://api.usenumero.com/numeroaccount/api/v1/business/card/issue \
--header 'Content-Type: application/json' \
--header 'X-Numero-Api-Key: <api-key>' \
--header 'X-Numero-Signature: <api-key>' \
--data '
{
"productCode": "USD_VIRTUAL",
"firstName": "<string>",
"lastName": "<string>",
"capability": "APPLE_PAY",
"initialBalance": 5,
"brand": "visa",
"label": "Ads spend",
"email": "<string>",
"phone": "<string>",
"dateOfBirth": "2023-12-25",
"address1": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "NG",
"idType": "PASSPORT",
"idNumber": "<string>",
"bvn": "<string>",
"idDocumentFrontUrl": "<string>"
}
'import requests
url = "https://api.usenumero.com/numeroaccount/api/v1/business/card/issue"
payload = {
"productCode": "USD_VIRTUAL",
"firstName": "<string>",
"lastName": "<string>",
"capability": "APPLE_PAY",
"initialBalance": 5,
"brand": "visa",
"label": "Ads spend",
"email": "<string>",
"phone": "<string>",
"dateOfBirth": "2023-12-25",
"address1": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "NG",
"idType": "PASSPORT",
"idNumber": "<string>",
"bvn": "<string>",
"idDocumentFrontUrl": "<string>"
}
headers = {
"X-Numero-Api-Key": "<api-key>",
"X-Numero-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Numero-Api-Key': '<api-key>',
'X-Numero-Signature': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
productCode: 'USD_VIRTUAL',
firstName: '<string>',
lastName: '<string>',
capability: 'APPLE_PAY',
initialBalance: 5,
brand: 'visa',
label: 'Ads spend',
email: '<string>',
phone: '<string>',
dateOfBirth: '2023-12-25',
address1: '<string>',
city: '<string>',
state: '<string>',
zipcode: '<string>',
country: 'NG',
idType: 'PASSPORT',
idNumber: '<string>',
bvn: '<string>',
idDocumentFrontUrl: '<string>'
})
};
fetch('https://api.usenumero.com/numeroaccount/api/v1/business/card/issue', 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://api.usenumero.com/numeroaccount/api/v1/business/card/issue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'productCode' => 'USD_VIRTUAL',
'firstName' => '<string>',
'lastName' => '<string>',
'capability' => 'APPLE_PAY',
'initialBalance' => 5,
'brand' => 'visa',
'label' => 'Ads spend',
'email' => '<string>',
'phone' => '<string>',
'dateOfBirth' => '2023-12-25',
'address1' => '<string>',
'city' => '<string>',
'state' => '<string>',
'zipcode' => '<string>',
'country' => 'NG',
'idType' => 'PASSPORT',
'idNumber' => '<string>',
'bvn' => '<string>',
'idDocumentFrontUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Numero-Api-Key: <api-key>",
"X-Numero-Signature: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.usenumero.com/numeroaccount/api/v1/business/card/issue"
payload := strings.NewReader("{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Numero-Api-Key", "<api-key>")
req.Header.Add("X-Numero-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.usenumero.com/numeroaccount/api/v1/business/card/issue")
.header("X-Numero-Api-Key", "<api-key>")
.header("X-Numero-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.usenumero.com/numeroaccount/api/v1/business/card/issue")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Numero-Api-Key"] = '<api-key>'
request["X-Numero-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"cardReference": "NCRD24AD18BEBD474A",
"customerId": "NCUS9953596C2B7F45",
"label": "<string>",
"brand": "Visa",
"firstSix": "428852",
"lastFour": "6353",
"expiryMonth": "06",
"expiryYear": "2029",
"currency": "USD",
"balance": 5,
"isPhysical": true,
"dailyLimit": 123,
"perTransactionLimit": 123,
"issuedAt": "2023-11-07T05:31:56Z",
"capabilities": [
"USD",
"APPLE_PAY",
"GOOGLE_PAY"
]
},
"error": {
"message": "<string>",
"param": "<string>"
},
"meta": {
"request_id": "<string>",
"pagination": {
"page": 123,
"page_size": 123,
"total": 123,
"has_more": true
}
}
}Issue a virtual card
Issue a USD virtual card. Pass the cardholderβs KYC inline (the cardholder is created/reused automatically), or use the Cardholders flow to issue to an existing cardholder. initialBalance is debited from your USD card wallet (fund-first).
curl --request POST \
--url https://api.usenumero.com/numeroaccount/api/v1/business/card/issue \
--header 'Content-Type: application/json' \
--header 'X-Numero-Api-Key: <api-key>' \
--header 'X-Numero-Signature: <api-key>' \
--data '
{
"productCode": "USD_VIRTUAL",
"firstName": "<string>",
"lastName": "<string>",
"capability": "APPLE_PAY",
"initialBalance": 5,
"brand": "visa",
"label": "Ads spend",
"email": "<string>",
"phone": "<string>",
"dateOfBirth": "2023-12-25",
"address1": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "NG",
"idType": "PASSPORT",
"idNumber": "<string>",
"bvn": "<string>",
"idDocumentFrontUrl": "<string>"
}
'import requests
url = "https://api.usenumero.com/numeroaccount/api/v1/business/card/issue"
payload = {
"productCode": "USD_VIRTUAL",
"firstName": "<string>",
"lastName": "<string>",
"capability": "APPLE_PAY",
"initialBalance": 5,
"brand": "visa",
"label": "Ads spend",
"email": "<string>",
"phone": "<string>",
"dateOfBirth": "2023-12-25",
"address1": "<string>",
"city": "<string>",
"state": "<string>",
"zipcode": "<string>",
"country": "NG",
"idType": "PASSPORT",
"idNumber": "<string>",
"bvn": "<string>",
"idDocumentFrontUrl": "<string>"
}
headers = {
"X-Numero-Api-Key": "<api-key>",
"X-Numero-Signature": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-Numero-Api-Key': '<api-key>',
'X-Numero-Signature': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
productCode: 'USD_VIRTUAL',
firstName: '<string>',
lastName: '<string>',
capability: 'APPLE_PAY',
initialBalance: 5,
brand: 'visa',
label: 'Ads spend',
email: '<string>',
phone: '<string>',
dateOfBirth: '2023-12-25',
address1: '<string>',
city: '<string>',
state: '<string>',
zipcode: '<string>',
country: 'NG',
idType: 'PASSPORT',
idNumber: '<string>',
bvn: '<string>',
idDocumentFrontUrl: '<string>'
})
};
fetch('https://api.usenumero.com/numeroaccount/api/v1/business/card/issue', 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://api.usenumero.com/numeroaccount/api/v1/business/card/issue",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'productCode' => 'USD_VIRTUAL',
'firstName' => '<string>',
'lastName' => '<string>',
'capability' => 'APPLE_PAY',
'initialBalance' => 5,
'brand' => 'visa',
'label' => 'Ads spend',
'email' => '<string>',
'phone' => '<string>',
'dateOfBirth' => '2023-12-25',
'address1' => '<string>',
'city' => '<string>',
'state' => '<string>',
'zipcode' => '<string>',
'country' => 'NG',
'idType' => 'PASSPORT',
'idNumber' => '<string>',
'bvn' => '<string>',
'idDocumentFrontUrl' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-Numero-Api-Key: <api-key>",
"X-Numero-Signature: <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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.usenumero.com/numeroaccount/api/v1/business/card/issue"
payload := strings.NewReader("{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-Numero-Api-Key", "<api-key>")
req.Header.Add("X-Numero-Signature", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.usenumero.com/numeroaccount/api/v1/business/card/issue")
.header("X-Numero-Api-Key", "<api-key>")
.header("X-Numero-Signature", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.usenumero.com/numeroaccount/api/v1/business/card/issue")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-Numero-Api-Key"] = '<api-key>'
request["X-Numero-Signature"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"productCode\": \"USD_VIRTUAL\",\n \"firstName\": \"<string>\",\n \"lastName\": \"<string>\",\n \"capability\": \"APPLE_PAY\",\n \"initialBalance\": 5,\n \"brand\": \"visa\",\n \"label\": \"Ads spend\",\n \"email\": \"<string>\",\n \"phone\": \"<string>\",\n \"dateOfBirth\": \"2023-12-25\",\n \"address1\": \"<string>\",\n \"city\": \"<string>\",\n \"state\": \"<string>\",\n \"zipcode\": \"<string>\",\n \"country\": \"NG\",\n \"idType\": \"PASSPORT\",\n \"idNumber\": \"<string>\",\n \"bvn\": \"<string>\",\n \"idDocumentFrontUrl\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"cardReference": "NCRD24AD18BEBD474A",
"customerId": "NCUS9953596C2B7F45",
"label": "<string>",
"brand": "Visa",
"firstSix": "428852",
"lastFour": "6353",
"expiryMonth": "06",
"expiryYear": "2029",
"currency": "USD",
"balance": 5,
"isPhysical": true,
"dailyLimit": 123,
"perTransactionLimit": 123,
"issuedAt": "2023-11-07T05:31:56Z",
"capabilities": [
"USD",
"APPLE_PAY",
"GOOGLE_PAY"
]
},
"error": {
"message": "<string>",
"param": "<string>"
},
"meta": {
"request_id": "<string>",
"pagination": {
"page": 123,
"page_size": 123,
"total": 123,
"has_more": true
}
}
}Authorizations
Your business API key (live_key_...). Issued on approval; managed in Dashboard β Settings β Developer.
Base64(HMAC-SHA256(publicApiKey, input)) over the raw request body (POST) or canonicalized
query string (signed GET). Also send X-Numero-Signature-Version: v2. Required on
money-movement / state-changing endpoints (marked π).
The HMAC key is your Public Key as raw UTF-8 bytes β a SECRET despite the name, and a
different value from the X-Numero-Api-Key authentication header. Signing with the API key
will never produce a valid signature.
Body
Card product code (drives currency + card type). Discover available products via GET /business/card/products.
"USD_VIRTUAL"
Card type. Every card is a wallet-enabled USD card, so this is optional β omit it, or send APPLE_PAY or GOOGLE_PAY to issue a wallet-enabled USD card the cardholder can add to Apple/Google Wallet. Numero routes to an issuer that supports it.
USD, APPLE_PAY, GOOGLE_PAY, null "APPLE_PAY"
USD loaded onto the card at issue (debited from your USD card wallet).
5
"visa"
Friendly card name.
"Ads spend"
"NG"
"PASSPORT"
ID-document image URL β required by some issuers.