Get verification status
curl --request GET \
--url https://orchestrator.control.coincover.com/v1/verification/status \
--header 'X-API-Key: <api-key>'import requests
url = "https://orchestrator.control.coincover.com/v1/verification/status"
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://orchestrator.control.coincover.com/v1/verification/status', 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://orchestrator.control.coincover.com/v1/verification/status",
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://orchestrator.control.coincover.com/v1/verification/status"
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://orchestrator.control.coincover.com/v1/verification/status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orchestrator.control.coincover.com/v1/verification/status")
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{
"verification_id": "inq_abc123xyz",
"status": "approved",
"updated_at": "2024-01-15T10:30:00Z"
}Verification
Get verification status
Retrieves the current status of a biometric verification. The status can be in multiple states: ‘pending’ (initial state), ‘approved’ (all verifications passed), ‘declined’ (verifications failed), or ‘review’ (marked for manual review).
GET
/
v1
/
verification
/
status
Get verification status
curl --request GET \
--url https://orchestrator.control.coincover.com/v1/verification/status \
--header 'X-API-Key: <api-key>'import requests
url = "https://orchestrator.control.coincover.com/v1/verification/status"
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://orchestrator.control.coincover.com/v1/verification/status', 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://orchestrator.control.coincover.com/v1/verification/status",
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://orchestrator.control.coincover.com/v1/verification/status"
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://orchestrator.control.coincover.com/v1/verification/status")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://orchestrator.control.coincover.com/v1/verification/status")
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{
"verification_id": "inq_abc123xyz",
"status": "approved",
"updated_at": "2024-01-15T10:30:00Z"
}Authorizations
ApiKeyAuthBearerAuth
API key for authentication and authorization
Query Parameters
Verification ID to check status for
Response
200 - application/json
Verification status retrieved successfully
Unique identifier for the biometric verification
Example:
"inq_abc123xyz"
Status of the biometric verification
Available options:
pending, approved, declined, review Example:
"approved"
Timestamp when the status was last updated
Example:
"2024-01-15T10:30:00Z"