Products
Check per-furnisher field coverage before running a query
POST
/
v1
/
products
/
check
Soft check: per-furnisher field coverage for a product and profile
curl --request POST \
--url https://api.solo.one/v1/products/check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"network_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"policy_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"furnishing_entity_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"consent_id": "<string>",
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.solo.one/v1/products/check"
payload = {
"network_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"policy_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"furnishing_entity_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"consent_id": "<string>",
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
network_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
product_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
policy_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
furnishing_entity_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
consent_id: '<string>',
consumer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
business_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://api.solo.one/v1/products/check', 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.solo.one/v1/products/check",
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([
'network_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'product_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'policy_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'furnishing_entity_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'consent_id' => '<string>',
'consumer_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'business_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.solo.one/v1/products/check"
payload := strings.NewReader("{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.solo.one/v1/products/check")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.solo.one/v1/products/check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entities": [
{
"furnishing_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"complete": true,
"models": [
{
"model_name": "<string>",
"met_count": 123,
"total_count": 123,
"fields": [
{
"field_name": "<string>",
"met": true
}
],
"hit": false
}
],
"furnishing_entity_name": "<string>",
"network_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hit": false
}
],
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json
Networks to query across; the single policy is applied to all of them.
Minimum array length:
1Product to coverage-check.
Querying policy applied across every network in network_ids. If omitted, each network's default policy is used.
Optional furnishing-entity scope. When omitted or empty, data from all furnishers is considered.
Consent token — system resolves identity.
Consumer profile primary key (Consumer.id).
Business profile primary key (Business.id).
Previous
Create a querying policy for a (product, network) pair.Create a new querying policy for a (product, network) pair.
The ``(network_id, product_id)`` pair is resolved server-side to its
network-product association (auto-creating it if missing). Per-model
and per-field selections for the policy are authored separately via
``PUT /networks/policies/querying/{policy_id}/configuration``.
Next
⌘I
Soft check: per-furnisher field coverage for a product and profile
curl --request POST \
--url https://api.solo.one/v1/products/check \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"network_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"policy_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"furnishing_entity_ids": [
"3c90c3cc-0d44-4b50-8888-8dd25736052a"
],
"consent_id": "<string>",
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'import requests
url = "https://api.solo.one/v1/products/check"
payload = {
"network_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"policy_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"furnishing_entity_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"consent_id": "<string>",
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
network_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
product_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
policy_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
furnishing_entity_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
consent_id: '<string>',
consumer_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a',
business_id: '3c90c3cc-0d44-4b50-8888-8dd25736052a'
})
};
fetch('https://api.solo.one/v1/products/check', 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.solo.one/v1/products/check",
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([
'network_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'product_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'policy_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'furnishing_entity_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'consent_id' => '<string>',
'consumer_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a',
'business_id' => '3c90c3cc-0d44-4b50-8888-8dd25736052a'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$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.solo.one/v1/products/check"
payload := strings.NewReader("{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
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.solo.one/v1/products/check")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.solo.one/v1/products/check")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"network_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"product_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"policy_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"furnishing_entity_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"consent_id\": \"<string>\",\n \"consumer_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\",\n \"business_id\": \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n}"
response = http.request(request)
puts response.read_body{
"product_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"entities": [
{
"furnishing_entity_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"complete": true,
"models": [
{
"model_name": "<string>",
"met_count": 123,
"total_count": 123,
"fields": [
{
"field_name": "<string>",
"met": true
}
],
"hit": false
}
],
"furnishing_entity_name": "<string>",
"network_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"hit": false
}
],
"consumer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"business_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>",
"input": "<unknown>",
"ctx": {}
}
]
}