Skip to main content
GET
/
v1
/
attorneys
/
{id}
/
analytics
Attorney Analytics
curl --request GET \
  --url https://api.signa.so/v1/attorneys/{id}/analytics \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.signa.so/v1/attorneys/{id}/analytics"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.signa.so/v1/attorneys/{id}/analytics', 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.signa.so/v1/attorneys/{id}/analytics",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "Authorization: Bearer <token>"
  ],
]);

$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.signa.so/v1/attorneys/{id}/analytics"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	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.signa.so/v1/attorneys/{id}/analytics")
  .header("Authorization", "Bearer <token>")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.signa.so/v1/attorneys/{id}/analytics")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body

When to use this

Use this endpoint when evaluating counsel for a new filing or comparing an opponent’s representation history. It summarizes the attorney’s live trademark portfolio footprint. Reports are invalidated on party updates, with a 24-hour TTL backstop; Server-Timing reports cache;desc="hit" or cache;desc="miss".

Path Parameters

id
string
required
Attorney ID (att_*).

Example

Request
curl https://api.signa.so/v1/attorneys/att_K8mN2R3j/analytics -H "Authorization: Bearer $SIGNA_API_KEY"
Response
{
  "object": "analytics_report",
  "subject": {
    "id": "att_K8mN2R3j",
    "object": "attorney",
    "name": "JANE DOE"
  },
  "portfolio": {
    "mark_count": 318,
    "active_count": 260,
    "dead_count": 58,
    "status_distribution": {
      "registered": 260,
      "abandoned": 58
    },
    "class_distribution": {
      "35": 90
    },
    "jurisdiction_spread": {
      "US": 318
    },
    "filing_trend": {
      "2025": 31
    }
  },
  "litigation": null,
  "transactions": null,
  "generated_at": "2026-07-11T08:00:00.000Z"
}
litigation and transactions are always null because the data model has no attorney litigation or transaction grain. Owner/entity transaction reports expose conveyance-type buckets, assignee-side acquired_count, assignor-side divested_count, first/last recording dates, and lien counts. A security interest is unreleased until a non-purged release points back to its reel/frame; marks_with_liens deduplicates marks on those unreleased recordings. Acquirers use owner/entity transaction blocks to gauge brand-transaction history, and lenders use them to check for unreleased liens before extending credit. See list assignments, get an assignment, and the chain-of-title and lien diligence guide for recording-level detail.