Trigger bureau submission
curl --request POST \
--url https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001"
}
'import requests
url = "https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit"
payload = { "tradeline_id": "660e8400-e29b-41d4-a716-446655440001" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({tradeline_id: '660e8400-e29b-41d4-a716-446655440001'})
};
fetch('https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit', 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://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit",
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([
'tradeline_id' => '660e8400-e29b-41d4-a716-446655440001'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit"
payload := strings.NewReader("{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<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://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Submission queued",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"submissions": [
{
"id": "990e8400-e29b-41d4-a716-446655440010",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "equifax",
"status": "pending",
"submission_date": "2026-02-16"
},
{
"id": "990e8400-e29b-41d4-a716-446655440011",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "transunion",
"status": "pending",
"submission_date": "2026-02-16"
},
{
"id": "990e8400-e29b-41d4-a716-446655440012",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "experian",
"status": "pending",
"submission_date": "2026-02-16"
}
]
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "payment_amount must be a positive integer (cents)",
"field": "payment_amount",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "AUTHENTICATION_ERROR",
"message": "Missing x-api-key header",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Consumer not found",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}Submissions
Trigger Submission
Manually trigger bureau submission for a specific tradeline. Intended for
partners with submission_frequency = "on_demand".
The tradeline must be active and have at least one unreported payment. Creates one pending submission per configured bureau and returns 202.
POST
/
submit
Trigger bureau submission
curl --request POST \
--url https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001"
}
'import requests
url = "https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit"
payload = { "tradeline_id": "660e8400-e29b-41d4-a716-446655440001" }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({tradeline_id: '660e8400-e29b-41d4-a716-446655440001'})
};
fetch('https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit', 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://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit",
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([
'tradeline_id' => '660e8400-e29b-41d4-a716-446655440001'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"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"
"strings"
"net/http"
"io"
)
func main() {
url := "https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit"
payload := strings.NewReader("{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-api-key", "<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://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://vvdufluovypptsnkihyv.supabase.co/functions/v1/submit")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"tradeline_id\": \"660e8400-e29b-41d4-a716-446655440001\"\n}"
response = http.request(request)
puts response.read_body{
"message": "Submission queued",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"submissions": [
{
"id": "990e8400-e29b-41d4-a716-446655440010",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "equifax",
"status": "pending",
"submission_date": "2026-02-16"
},
{
"id": "990e8400-e29b-41d4-a716-446655440011",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "transunion",
"status": "pending",
"submission_date": "2026-02-16"
},
{
"id": "990e8400-e29b-41d4-a716-446655440012",
"tradeline_id": "660e8400-e29b-41d4-a716-446655440001",
"bureau": "experian",
"status": "pending",
"submission_date": "2026-02-16"
}
]
}{
"error": {
"code": "VALIDATION_ERROR",
"message": "payment_amount must be a positive integer (cents)",
"field": "payment_amount",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "AUTHENTICATION_ERROR",
"message": "Missing x-api-key header",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "Consumer not found",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred",
"request_id": "4e9024e3-125d-4d08-a392-4fa34f6bda44"
}
}Authorizations
API key in the format sk_live_<token> (production) or sk_test_<token> (sandbox).
Contact Cove to obtain your API key.
Body
application/json
The tradeline to submit to bureaus
⌘I