Skip to main content
GET
/
v1
/
feedback
List Feedback
curl --request GET \
  --url https://api.signa.so/v1/feedback \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://api.signa.so/v1/feedback"

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/feedback', 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/feedback",
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/feedback"

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/feedback")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.signa.so/v1/feedback")

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
{
  "object": "list",
  "data": [
    {
      "id": "fbk_550e8400-e29b-41d4-a716-446655440000",
      "object": "feedback",
      "api_key_id": "key_1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
      "type": "data_issue",
      "status": "acknowledged",
      "message": "The registered owner is out of date.",
      "resource_id": "tm_9f8e7d6c-5b4a-3210-fedc-ba9876543210",
      "request_ref": "req_01kpjabcdefghijkmnpqrstvwx",
      "field": "owner.name",
      "expected_value": "Acme Holdings LLC",
      "context": {
        "resource": {
          "found": true,
          "resource_type": "trademark",
          "office": "uspto",
          "jurisdiction": "US",
          "version": 3,
          "status_primary": "active",
          "source_updated_at": "2026-07-01T00:00:00.000Z",
          "updated_at": "2026-07-02T08:00:00.000Z"
        }
      },
      "resolution_note": null,
      "metadata": {},
      "created_at": "2026-07-10T12:40:00.000Z",
      "updated_at": "2026-07-10T15:02:00.000Z",
      "resolved_at": null
    }
  ],
  "has_more": false,
  "pagination": {
    "cursor": null
  },
  "request_id": "req_aS6kL2mN"
}

Overview

Returns a cursor-paginated list of the feedback your organization has submitted, newest first. Reads are strictly org-scoped: you only ever see your own organization’s reports, and all API keys within an org share visibility (the per-row api_key_id tells you which key filed each one). A competitor can never see what you have reported. Filterable by type, status, and created-at range, all combinable. Any valid API key may read; no special scope is required. Listing feedback does not consume metered usage.

Query Parameters

type
string
Filter by feedback type. Comma-separated for multiple: ?type=data_issue,bug. Values: data_issue, bug, feature_request, other.
status
string
Filter by lifecycle status. Comma-separated for multiple: ?status=open,acknowledged. Values: open, acknowledged, resolved.
created_at_gte
string
Return feedback created at or after this time (YYYY-MM-DD or ISO 8601).
created_at_lt
string
Return feedback created strictly before this time (YYYY-MM-DD or ISO 8601).
limit
integer
default:"20"
Items per page (1 to 100).
cursor
string
Pagination cursor from a previous response.

Response

object
string
Always list.
data
object[]
has_more
boolean
Whether more pages are available.
pagination
object
request_id
string
The request ID of this list call itself.
{
  "object": "list",
  "data": [
    {
      "id": "fbk_550e8400-e29b-41d4-a716-446655440000",
      "object": "feedback",
      "api_key_id": "key_1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
      "type": "data_issue",
      "status": "acknowledged",
      "message": "The registered owner is out of date.",
      "resource_id": "tm_9f8e7d6c-5b4a-3210-fedc-ba9876543210",
      "request_ref": "req_01kpjabcdefghijkmnpqrstvwx",
      "field": "owner.name",
      "expected_value": "Acme Holdings LLC",
      "context": {
        "resource": {
          "found": true,
          "resource_type": "trademark",
          "office": "uspto",
          "jurisdiction": "US",
          "version": 3,
          "status_primary": "active",
          "source_updated_at": "2026-07-01T00:00:00.000Z",
          "updated_at": "2026-07-02T08:00:00.000Z"
        }
      },
      "resolution_note": null,
      "metadata": {},
      "created_at": "2026-07-10T12:40:00.000Z",
      "updated_at": "2026-07-10T15:02:00.000Z",
      "resolved_at": null
    }
  ],
  "has_more": false,
  "pagination": {
    "cursor": null
  },
  "request_id": "req_aS6kL2mN"
}

Code Examples

curl "https://api.signa.so/v1/feedback?type=data_issue&status=open,acknowledged&limit=50" \
  -H "Authorization: Bearer sig_YOUR_KEY"
import { Signa } from "@signa-so/sdk";

const signa = new Signa({ api_key: process.env.SIGNA_API_KEY });

// Auto-paginating async iterator over every open data issue.
const open = await signa.feedback.list({ type: "data_issue", status: "open" });
for await (const item of open) {
  console.log(item.id, item.status, item.message);
}

Errors

StatusTypeDescription
400validation_errorInvalid type/status value or date format
401unauthorizedMissing or invalid API key
429rate_limitedToo many requests