Search the public team-reputation directory
curl --request GET \
--url https://api.mnemom.ai/v1/teams/reputation/searchimport requests
url = "https://api.mnemom.ai/v1/teams/reputation/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/teams/reputation/search', 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.mnemom.ai/v1/teams/reputation/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.mnemom.ai/v1/teams/reputation/search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mnemom.ai/v1/teams/reputation/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/teams/reputation/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"teams": [
{
"team_id": "<string>",
"team_name": "<string>",
"score": 123,
"is_eligible": true,
"components": [
{
"label": "<string>",
"score": 123,
"weight": 123,
"weighted_score": 123,
"factors": [
"<string>"
]
}
],
"total_assessments": 123,
"last_assessed": "2023-11-07T05:31:56Z",
"trend_30d": 123,
"computed_at": "2023-11-07T05:31:56Z",
"member_count": 123,
"a2a_trust_extension": {
"extension_uri": "<string>",
"provider": "<string>",
"score": 123,
"grade": "<string>",
"confidence": "<string>",
"member_count": 123,
"verified_url": "<string>",
"badge_url": "<string>",
"methodology_url": "<string>",
"last_updated": "2023-11-07T05:31:56Z"
}
}
],
"total": 123,
"page": 123,
"per_page": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}Team Reputation
Search the public team-reputation directory
Search the public team-reputation directory
GET
/
teams
/
reputation
/
search
Search the public team-reputation directory
curl --request GET \
--url https://api.mnemom.ai/v1/teams/reputation/searchimport requests
url = "https://api.mnemom.ai/v1/teams/reputation/search"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.mnemom.ai/v1/teams/reputation/search', 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.mnemom.ai/v1/teams/reputation/search",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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://api.mnemom.ai/v1/teams/reputation/search"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.mnemom.ai/v1/teams/reputation/search")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.mnemom.ai/v1/teams/reputation/search")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"teams": [
{
"team_id": "<string>",
"team_name": "<string>",
"score": 123,
"is_eligible": true,
"components": [
{
"label": "<string>",
"score": 123,
"weight": 123,
"weighted_score": 123,
"factors": [
"<string>"
]
}
],
"total_assessments": 123,
"last_assessed": "2023-11-07T05:31:56Z",
"trend_30d": 123,
"computed_at": "2023-11-07T05:31:56Z",
"member_count": 123,
"a2a_trust_extension": {
"extension_uri": "<string>",
"provider": "<string>",
"score": 123,
"grade": "<string>",
"confidence": "<string>",
"member_count": 123,
"verified_url": "<string>",
"badge_url": "<string>",
"methodology_url": "<string>",
"last_updated": "2023-11-07T05:31:56Z"
}
}
],
"total": 123,
"page": 123,
"per_page": 123
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}{
"error": {
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}
}⌘I