You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" :::tip For optimal performance, use date ranges and form types to narrow down your search :::
17
+
Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" ### Pagination Results are always paginated. When `page_size` or `page_number` are omitted, defaults apply (`page_size`: 50, `page_number`: 1). Maximum `page_size` is 200. Use `page_number` to fetch additional pages. :::tip For optimal performance, use date ranges and form types to narrow down your search :::
18
18
19
19
### Example
20
20
@@ -31,8 +31,8 @@ String fillingDateEnd = null; // String | Filter by filling date end (inclusive)
31
31
String reportDateStart =null; // String | Filter by report date start (inclusive), format YYYY-MM-DD
32
32
String reportDateEnd =null; // String | Filter by report date end (inclusive), format YYYY-MM-DD
33
33
String itemsContain =null; // String | Filter filings where the 'Items' field contains the specified text
34
-
Integer pageSize =null; // Integer | Number of results per page (default: 50, max: 200)
35
-
Integer pageNumber =null; // Integer | Page number to retrieve (default: 1)
34
+
Integer pageSize =null; // Integer | Number of results per page (default: 50, max: 200). Always applied; omit to use defaults.
35
+
Integer pageNumber =null; // Integer | Page number to retrieve (default: 1). Always applied; omit to use defaults.
36
36
DTOFilingSortBy sortBy =null; // DTOFilingSortBy | Field to sort results by (default: AccessionNumber)
37
37
String sortOrder = desc; // String | Sort order (asc or desc, default: desc)
38
38
try {
@@ -57,8 +57,8 @@ Name | Type | Description | Notes
57
57
**reportDateStart** | **String**| Filter by report date start (inclusive), format YYYY-MM-DD | [optional][default to null]
58
58
**reportDateEnd** | **String**| Filter by report date end (inclusive), format YYYY-MM-DD | [optional][default to null]
59
59
**itemsContain** | **String**| Filter filings where the 'Items' field contains the specified text | [optional][default to null]
60
-
**pageSize** | **Integer**| Number of results per page (default: 50, max: 200) | [optional][default to null]
61
-
**pageNumber** | **Integer**| Page number to retrieve (default: 1) | [optional][default to null]
60
+
**pageSize** | **Integer**| Number of results per page (default: 50, max: 200). Always applied; omit to use defaults. | [optional][default to null]
61
+
**pageNumber** | **Integer**| Page number to retrieve (default: 1). Always applied; omit to use defaults. | [optional][default to null]
62
62
**sortBy** | [**DTOFilingSortBy**](.md)| Field to sort results by (default: AccessionNumber) | [optional][default to null][enum: AccessionNumber, FilingDate, ReportDate, AcceptanceDateTime, Size]
63
63
**sortOrder** | **String**| Sort order (asc or desc, default: desc) | [optional][default to desc]
Search across SEC filing documents with advanced filtering and sorting capabilities. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FormType | Type of the filing document FilingDate | Date when filing was submitted CompanyName | Name of the company CIK | Central Index Key DocumentFilename | Name of the filing document DocumentDescription | Description of the document ### Search Options Option | Description --------|------------- text_contains | Keywords that must appear in the document text_not_contain | Keywords that must not appear in the document ### Date Format All dates must be provided in YYYY-MM-DD format :::tip Use text_contains and text_not_contain with multiple keywords separated by commas for more precise searches ::: :::note The search is case-insensitive and supports partial word matches :::
17
+
Search across SEC filing documents with advanced filtering and sorting capabilities. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FormType | Type of the filing document FilingDate | Date when filing was submitted CompanyName | Name of the company CIK | Central Index Key DocumentFilename | Name of the filing document DocumentDescription | Description of the document ### Search Options Option | Description --------|------------- text_contains | Keywords that must appear in the document text_not_contain | Keywords that must not appear in the document ### Date Format All dates must be provided in YYYY-MM-DD format ### Pagination Results are always paginated. When `page_size` or `page_number` are omitted, defaults apply (`page_size`: 100, `page_number`: 1). Maximum `page_size` is 200. Use `page_number` to fetch additional pages. :::tip Use text_contains and text_not_contain with multiple keywords separated by commas for more precise searches ::: :::note The search is case-insensitive and supports partial word matches :::
18
18
19
19
### Example
20
20
@@ -28,8 +28,8 @@ String fillingDateStart = null; // String | Filter by filling date start (inclus
28
28
String fillingDateEnd =null; // String | Filter by filling date end (inclusive), format YYYY-MM-DD
29
29
String textContains =null; // String | Keywords that the text must contain. Multiple values can be comma-separated
30
30
String textNotContain =null; // String | Keywords that the text must not contain. Multiple values can be comma-separated
31
-
Integer pageSize =null; // Integer | Number of results per page (default: 100)
32
-
Integer pageNumber =null; // Integer | Page number to retrieve (default: 1)
31
+
Integer pageSize =null; // Integer | Number of results per page (default: 100, max: 200). Always applied; omit to use defaults.
32
+
Integer pageNumber =null; // Integer | Page number to retrieve (default: 1). Always applied; omit to use defaults.
33
33
String sortBy =AccessionNumber; // String | Field to sort by (default: AccessionNumber)
34
34
String sortOrder = asc; // String | Sort order (asc or desc). Defaults to asc
35
35
try {
@@ -51,8 +51,8 @@ Name | Type | Description | Notes
51
51
**fillingDateEnd** | **String**| Filter by filling date end (inclusive), format YYYY-MM-DD | [optional][default to null]
52
52
**textContains** | **String**| Keywords that the text must contain. Multiple values can be comma-separated | [optional][default to null]
53
53
**textNotContain** | **String**| Keywords that the text must not contain. Multiple values can be comma-separated | [optional][default to null]
54
-
**pageSize** | **Integer**| Number of results per page (default: 100) | [optional][default to null]
55
-
**pageNumber** | **Integer**| Page number to retrieve (default: 1) | [optional][default to null]
54
+
**pageSize** | **Integer**| Number of results per page (default: 100, max: 200). Always applied; omit to use defaults. | [optional][default to null]
55
+
**pageNumber** | **Integer**| Page number to retrieve (default: 1). Always applied; omit to use defaults. | [optional][default to null]
56
56
**sortBy** | **String**| Field to sort by (default: AccessionNumber) | [optional][default to AccessionNumber]
57
57
**sortOrder** | **String**| Sort order (asc or desc). Defaults to asc | [optional][default to asc]
Copy file name to clipboardExpand all lines: finfeedapi/sec-api-rest/sdk/android/src/main/java/org/openapitools/client/api/FilingsApi.java
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ public String getBasePath() {
61
61
62
62
/**
63
63
* Query SEC filing metadata
64
-
* Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" :::tip For optimal performance, use date ranges and form types to narrow down your search :::
64
+
* Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" ### Pagination Results are always paginated. When `page_size` or `page_number` are omitted, defaults apply (`page_size`: 50, `page_number`: 1). Maximum `page_size` is 200. Use `page_number` to fetch additional pages. :::tip For optimal performance, use date ranges and form types to narrow down your search :::
65
65
* @param cik Filter by Central Index Key (CIK)
66
66
* @param ticker Filter by stock ticker symbol
67
67
* @param formType Filter by form type(s) (e.g., \"10-K\", \"8-K\"). Multiple values can be comma-separated
@@ -70,8 +70,8 @@ public String getBasePath() {
70
70
* @param reportDateStart Filter by report date start (inclusive), format YYYY-MM-DD
71
71
* @param reportDateEnd Filter by report date end (inclusive), format YYYY-MM-DD
72
72
* @param itemsContain Filter filings where the 'Items' field contains the specified text
73
-
* @param pageSize Number of results per page (default: 50, max: 200)
74
-
* @param pageNumber Page number to retrieve (default: 1)
73
+
* @param pageSize Number of results per page (default: 50, max: 200). Always applied; omit to use defaults.
74
+
* @param pageNumber Page number to retrieve (default: 1). Always applied; omit to use defaults.
75
75
* @param sortBy Field to sort results by (default: AccessionNumber)
76
76
* @param sortOrder Sort order (asc or desc, default: desc)
* Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" :::tip For optimal performance, use date ranges and form types to narrow down your search :::
145
-
* @param cik Filter by Central Index Key (CIK) * @param ticker Filter by stock ticker symbol * @param formType Filter by form type(s) (e.g., \"10-K\", \"8-K\"). Multiple values can be comma-separated * @param fillingDateStart Filter by filling date start (inclusive), format YYYY-MM-DD * @param fillingDateEnd Filter by filling date end (inclusive), format YYYY-MM-DD * @param reportDateStart Filter by report date start (inclusive), format YYYY-MM-DD * @param reportDateEnd Filter by report date end (inclusive), format YYYY-MM-DD * @param itemsContain Filter filings where the 'Items' field contains the specified text * @param pageSize Number of results per page (default: 50, max: 200)* @param pageNumber Page number to retrieve (default: 1) * @param sortBy Field to sort results by (default: AccessionNumber) * @param sortOrder Sort order (asc or desc, default: desc)
144
+
* Retrieves metadata for SEC filings based on various filter criteria with pagination and sorting support. ### Available Sort Fields Field Name | Description -----------|------------- AccessionNumber | SEC filing accession number FilingDate | Date when filing was submitted AcceptanceDateTime | Date and time of filing acceptance ReportDate | Date of the report Size | Size of the filing document ### Date Format All dates must be provided in YYYY-MM-DD format ### Form Types Form types can be provided as comma-separated values, e.g.: \"10-K,8-K,10-Q\" ### Pagination Results are always paginated. When `page_size` or `page_number` are omitted, defaults apply (`page_size`: 50, `page_number`: 1). Maximum `page_size` is 200. Use `page_number` to fetch additional pages. :::tip For optimal performance, use date ranges and form types to narrow down your search :::
145
+
* @param cik Filter by Central Index Key (CIK) * @param ticker Filter by stock ticker symbol * @param formType Filter by form type(s) (e.g., \"10-K\", \"8-K\"). Multiple values can be comma-separated * @param fillingDateStart Filter by filling date start (inclusive), format YYYY-MM-DD * @param fillingDateEnd Filter by filling date end (inclusive), format YYYY-MM-DD * @param reportDateStart Filter by report date start (inclusive), format YYYY-MM-DD * @param reportDateEnd Filter by report date end (inclusive), format YYYY-MM-DD * @param itemsContain Filter filings where the 'Items' field contains the specified text * @param pageSize Number of results per page (default: 50, max: 200). Always applied; omit to use defaults. * @param pageNumber Page number to retrieve (default: 1). Always applied; omit to use defaults. * @param sortBy Field to sort results by (default: AccessionNumber) * @param sortOrder Sort order (asc or desc, default: desc)
0 commit comments