For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
LearnGraph LoginRequest a Demo
HomeAPIBulk DataSayari LibraryChange Log
  • Key Concepts
    • Introduction
    • Endpoint Overview
    • Authentication
    • Requests
    • Pagination
    • Response Status Codes
    • Data Types
    • Rate Limits
  • API Clients
    • Overview
    • Open API
    • Postman
    • Go
    • Python
    • Node
  • API Reference
      • POSTSearch Entity
      • GETSearch Entity GET
      • POSTSearch Record
      • GETSearch Record GET
  • Guides
    • Getting Started
    • Understanding Project Entity
    • Risk Factors
    • Entity Search
    • Advanced Entity Search
    • Resolution
    • Trade Search - Shipments
    • Trade Search - Suppliers & Buyers
    • v0 Migration
  • Implementation Patterns
    • Project Entity Supply Chain
  • Use Cases
    • Entity Screening & Verification
    • Investigations
LogoLogo
LearnGraph LoginRequest a Demo
API ReferenceSearch

Search Record

POST
/v1/search/record
POST
/v1/search/record
$curl -X POST "https://api.sayari.com/v1/search/record?limit=1" \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json" \
> -d '{
> "q": "victoria beckham limited"
>}'
1{
2 "data": [
3 {
4 "id": "a7e5a83df5551eb557688c84451abd9d/0000950123-09-004358-index.htm/1697610858173",
5 "label": "Company Record from USA SEC 10-K Database",
6 "source": "a7e5a83df5551eb557688c84451abd9d",
7 "acquisition_date": "2023-10-18",
8 "references_count": 10,
9 "record_url": "/v1/record/a7e5a83df5551eb557688c84451abd9d%2F0000950123-09-004358-index.htm%2F1697610858173",
10 "publication_date": "2009-03-10",
11 "source_url": "https://www.sec.gov/Archives/edgar/data/2488/000119312513069422/0000950123-09-004358-index.htm",
12 "matches": {
13 "text": [
14 "In\n addition, David and <em>Victoria</em> <em>Beckham</em> have agreed to pursue the\n development and exploitation of projects relating to\n merchandising, products and skills (that do not, with certain\n exceptions, include the name “<em>Beckham</em>”) exclusively\n through a joint venture vehicle, <em>Beckham</em> Brand <em>Limited</em>",
15 "(“BBL”), which is owned one-third by each of David\n <em>Beckham</em>, <em>Victoria</em> <em>Beckham</em>, and a subsidiary of 19 Entertainment.",
16 "For\n example, 19 Entertainment manages <em>Victoria</em> <em>Beckham</em>, a fashion\n and lifestyle personality as well as David <em>Beckham</em>, a globally\n recognized soccer player who commenced playing for the Los\n Angeles Galaxy of United States-based Major League Soccer in\n July 2007 and is currently playing",
17 "<em>Beckham</em> (see\n below under “<em>Beckham</em> Relationship”), Annie Lennox and\n Cathy Dennis.",
18 "In 2008, <em>Victoria</em> successfully launched her\n dress collection, a new denim collection under her DVB Style\n brand and a DVB line of eyewear."
19 ]
20 },
21 "country": "USA",
22 "page": 8,
23 "page_count": 92
24 }
25 ],
26 "limit": 1,
27 "next": true,
28 "offset": 0,
29 "size": {
30 "count": 182,
31 "qualifier": "eq"
32 }
33}
Search for a record. Please note, searches are limited to a maximum of 10,000 results.
Was this page helpful?
Previous

Search Record GET

Next
Built with

Authentication

AuthorizationBearer

OAuth authentication of the form <token>.

Query parameters

limitintegerOptional
A limit on the number of objects to be returned with a range between 1 and 100. Defaults to 100.
offsetintegerOptional
Number of results to skip before returning response. Defaults to 0.

Request

This endpoint expects an object.
qstringRequired
Query term. The syntax for the query parameter follows elasticsearch simple query string syntax. The includes the ability to use search operators and to perform nested queries. Must be url encoded.
filterobjectOptional

Filters to be applied to search query to limit the result-set.

facetsbooleanOptional
Whether or not to return search facets in results giving counts by field. Defaults to false.
advancedbooleanOptional

Set to true to enable full elasticsearch query string syntax which allows for fielded search and more complex operators. Note that the syntax is more strict and can result in empty result-sets. Defaults to false.

Response

This endpoint returns an object.
datalist of objects
limitinteger
nextboolean
offsetinteger
sizeobject

Errors

400
Bad Request
401
Unauthorized
405
Method Not Allowed
406
Not Acceptable
429
Rate Limit Exceeded
500
Internal Server Error