Get Invoice Verifications
GET
/api/v1/invoice-verificationsRetrieve the history of invoice verifications performed. Verification history requires a database integration, each call to POST {{API_PATH}}/invoice-verifications should be persisted to build an audit trail.
Requires x-api-key
http://localhost:8100/api/v1/invoice-verifications
Note
Invoice verification history is not stored by the OSCU service. Integrate a database such as Vercel KV or Supabase to persist each verification record.
Response
{
"success": true,
"data": {
"verifications": [],
"note": "Invoice verification history requires a database integration. Integrate Vercel KV or Supabase to persist verification records."
}
}curl http://localhost:8100/api/v1/invoice-verifications \\
-H "x-api-key: YOUR_API_KEY"