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

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

url = URI("https://api.signa.so/v1/firms/{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 to compare firms for portfolio prosecution work or understand which jurisdictions and classes dominate a firm’s practice. It returns the firm’s live trademark portfolio in one report. 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
Firm ID (firm_*).

Example

Request
curl https://api.signa.so/v1/firms/firm_N2R3jK8m/analytics -H "Authorization: Bearer $SIGNA_API_KEY"
Response
{
  "object": "analytics_report",
  "subject": {
    "id": "firm_N2R3jK8m",
    "object": "firm",
    "name": "EXAMPLE LLP"
  },
  "portfolio": {
    "mark_count": 842,
    "active_count": 700,
    "dead_count": 142,
    "status_distribution": {
      "registered": 700,
      "expired": 142
    },
    "class_distribution": {
      "42": 180
    },
    "jurisdiction_spread": {
      "US": 620,
      "EU": 222
    },
    "filing_trend": {
      "2025": 95
    }
  },
  "litigation": null,
  "transactions": null,
  "generated_at": "2026-07-11T08:00:00.000Z"
}
litigation and transactions are always null because the data model has no firm 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.