Skip to main content
GET
/
v2
/
search
/
requests
List historical search requests
curl --request GET \
  --url https://api.gominerva.com/v2/search/requests \
  --header 'x-api-key: <api-key>'
{
  "pagination": {
    "page": 1,
    "limit": 25,
    "total_count": 42,
    "total_pages": 2,
    "has_next": true,
    "has_prev": false
  },
  "requests": [
    {
      "id": "665f0d4c2d2f7c2b2f2f2f2f",
      "tenant_id": "org_123",
      "config": {},
      "entities": [
        {
          "name": "Jane Doe",
          "feeds": [
            "Sanctions",
            "PEP"
          ],
          "type": "individual",
          "custom_id": "case-1001"
        }
      ],
      "created_at": "2026-05-14T13:22:45Z",
      "updated_at": "2026-05-14T13:22:48Z",
      "job_id": "665f0d4c2d2f7c2b2f2f2f30",
      "legacy_search_id": "legacy-search-123",
      "user_id": "user_123",
      "user_name": "Compliance Analyst",
      "user_email": "analyst@example.com"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.gominerva.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

The Minerva API key used for this integration. Manage API keys in the Minerva dashboard under Administration > Developers.

Query Parameters

page
integer
default:1

One-based result page. Defaults to 1.

Required range: x >= 1
limit
integer
default:10

Maximum number of requests to return. Defaults to 10 and is capped at 250.

Required range: 1 <= x <= 250
q
string

Case-insensitive search against submitted entity names.

job_id
string

Return requests associated with a specific search job id.

created_at_from
string<date-time>

Inclusive lower bound for the request created_at timestamp. Provide an RFC3339 date-time with an explicit timezone, for example 2026-05-01T00:00:00Z. URL clients should percent-encode reserved characters such as ':' when constructing query strings manually.

created_at_to
string<date-time>

Inclusive upper bound for the request created_at timestamp. Provide an RFC3339 date-time with an explicit timezone, for example 2026-05-31T23:59:59Z. URL clients should percent-encode reserved characters such as ':' when constructing query strings manually.

sort_key
enum<string>
default:created_at

Field used to sort the result set. Only created_at is currently supported.

Available options:
created_at
sort
enum<string>
default:desc

Sort direction for created_at. Defaults to desc.

Available options:
asc,
desc

Response

Paginated historical search requests.

pagination
object
required
requests
object[]
required