Get the PathPower relationship strength score for a company.
curl --request GET \
--url https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower \
--header 'x-api-key: <api-key>'import requests
url = "https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower"
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower', 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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower",
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower"
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower")
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{
"entity": "<string>",
"uuid": "<string>",
"meta": {},
"score": 123,
"score_display": 123,
"strength_label": "<string>"
}PathPower
PathPower for a company
Returns a single aggregate score (0.0–1.0) measuring how strongly the tenant’s team is connected to this company. This is a numeric strength indicator only — it does NOT return connection paths or introductions.
For actual relationship paths (“who knows people at this company”), use GET /v1/companies//recommended-paths instead.
Returns score=null (not 404) when no PathPower data exists.
strength_label uses lowercase PathPower bands: weak, moderate, strong, very_strong (underscore-separated).
GET
/
v1
/
companies
/
{company_uuid}
/
pathpower
Get the PathPower relationship strength score for a company.
curl --request GET \
--url https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower \
--header 'x-api-key: <api-key>'import requests
url = "https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower"
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower', 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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower",
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower"
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://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower")
.header("x-api-key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://production-api.joinrings.com/v1/companies/{company_uuid}/pathpower")
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{
"entity": "<string>",
"uuid": "<string>",
"meta": {},
"score": 123,
"score_display": 123,
"strength_label": "<string>"
}Authorizations
Path Parameters
Response
200 - application/json
Full PathPower profile for a single entity.
strength_label follows the REST convention: lowercase band keys weak, moderate, strong, very_strong (underscores, same as underlying categories).