Filing Query API
The Query API allows searching and filtering all 18+ million filings and exhibits published on the SEC EDGAR database since 1993 to present, with new filings being added in 300 milliseconds after their publication on EDGAR. The API accepts simple and complex search expressions and returns the metadata of matching EDGAR filings in JSON format including form type, accession numbers, filing date and times, filer information such as CIK, ticker and entity name, exhibits and attachements, URLs to the original SEC sources, and many more.
EDGAR filings are searchable by numerous parameters, such as: CIK (Central Index Key), ticker symbol or name of the filer, form type, filing date, accession number, item IDs in case of Form 8-K or Form 1-U filings, exhibit types, series and class contract IDs, and more. Refer to the list of searchable parameters to see all available search options.
The filing search capabilities of the Query API can be tested free of charge in our sandbox available here. The sanbdox showcases a variety of filing search examples and allows testing the API with own queries in a simple no-code environment.
1
{
2
// Microsoft's 10-Q filing for Q1 2024
3
accessionNo: "0000950170-24-048288",
4
formType: "10-Q",
5
periodOfReport: "2024-03-31",
6
filedAt: "2024-04-25T16:06:24-04:00",
7
ticker: "MSFT",
8
cik: "789019",
9
companyName: "MICROSOFT CORP (Filer)",
10
linkToFilingDetails: "sec.gov/Archive ... 4048288/msft-20240331.htm",
11
entities: [ ... ], // entities associated with filing: CIK, EIN, state of incorp., fiscal year, and more
12
documentFormatFiles: [ ... ], // files and exhibits attached to filing: URL, type, size
13
dataFiles: [ ... ], // XBRL data files
14
// ... more fields
15
}
The filings database inlcudes all EDGAR form types without exception, from annual and quarterly reports (Form 10-K, 10-Q, 20-F, 40-F), event-driven filings such as Form 8-K and 6-K, insider trading activities (Form 3, 4, 5), over registration statements (Form S-1, S-3, S-8) and prospectuses (Form 424B2, 424B3, 424B4), to institutional investment manager and company filings (Form 13F, N-PORT) and more than 150 other types ever published. The database includes all filings ever published by any of the 800,000 EDGAR filer entities. A full list of all EDGAR form types is available on the form types page.
Common Use Cases
The EDGAR filing search capability of the Query API is often used as a first step in a multi-process filing ingestion pipeline. For example, the Query API is often used to find the most recently disclosed filings of a specific form type, such as 10-Qs or 8-Ks, to obtain the URLs of those filings, and then download the full text of the filings using the Filing Download API or to convert the filings to PDFs using the PDF Generator API.
Common use cases for the Query API include:
- Submitting recently filed filing exhibits to regulatory authorities
- Monitoring filer compliance with exchange rules
- Powering internal insight analytics platforms
- Backtesting quantitative investment strategies
- Showing EDGAR filings on investor relationships websites
API Endpoint
In order to search and retrieve metadata of EDGAR filings, HTTP POST requests with the search expression as payload are sent to the following API endpoint:
Supported HTTP methods: POST
Request and response content type: JSON
Authentication
To authenticate your API requests, use the API key shown in your user profile. You can utilize your API key in one of two ways. Choose the method that best fits your implementation:
- Authorization Header: Include your API key as an
Authorization
header in your POST requests. For instance, before sending a POST request to https://api.sec-api.io, ensure the header is set as follows:Authorization: YOUR_API_KEY
- Query Parameter: Alternatively, append your API key directly to the URL as a query parameter. For example, when making POST requests, use the URL
https://api.sec-api.io?token=YOUR_API_KEY
instead of the base API endpoint.
Request Parameters
To search, filter and retrieve metadata of EDGAR filings, send a HTTP POST request with a JSON-formatted payload to the API endpoint https://api.sec-api.io
. The payload includes the search criteria, pagination and optional response sorting parameters, for example:
1
{
2
"query": "formType:\"10-Q\"",
3
"from": "0",
4
"size": "50",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
The API request payload includes the following fields, with the query
field being required and the others optional:
query
(string): Specifies the search criteria written in the Lucene syntax following thefield:value
format to search filings that includevalue
in the specifiedfield
. For example,formType:"10-K"
to find Form 10-K filings orticker:AAPL
to locate filings published by Apple. Thequery
string allows searching the filings database by any available field in the response object as described in the Response Format section below. For example, filing lookups can be performed by the filer's CIK, series, class or contract IDs, date ranges across filing publication times and periods of reports, event item codes in Form 8-Ks or 1-Us, exhibit types, and more. Multiple search criteria can be combined using logical operators (AND
,OR
,NOT
). For example,formType:"10-K" AND ticker:AAPL
to find Form 10-K filings published by Apple. The maximum length of thequery
string cannot exceed 3500 characters. Examples of various filing search expressions are available in the Query String Examples section below and in the sandbox. A complete guide on how to use the Lucene syntax is available here.from
(string, optional) - Use thefrom
property to specify the starting position of your search results, facilitating pagination. For instance, setfrom
to 50 to skip the first 50 filings. The default is 0, and the maximum allowed value is 10,000, which is also the cap for the maximum number of filings returned perquery
string. To retrieve all filings in your search universe, incrementfrom
by the value of thesize
parameter (e.g., 50) until no more filings are returned or the 10,000 filing limit is reached. For example, use0
,50
,100
, and so on. If yourquery
locates more than 10,000 filings, consider narrowing your search by refining your filter criteria, for example, using a date range filter to iterate over months or years. One such approach would be to search for filings with afiledAt
date range filter, e.g.filedAt:[2021-01-01 TO 2021-01-31]
(all filings from January 2021), then paginate through the results by incrementingfrom
, and once completed, repeat the process for the next month, and so on.size
(string, optional) - Determines the number of filings returned per request. For instance, setsize
to 10 to retrieve 10 filings per request. The default value is 50, and the maximum allowed value is 50, which is the cap for the maximum number of filings returned per request.sort
(array, optional) - An array of objects that specify how the returned filings are sorted. The default sorting order is descending byfiledAt
datetime field, most recent filing first. The sorting order can be changed to ascending by settingorder
toasc
. The default sorting order can be overridden by specifying a different sorting field. For example, to sort filings byperiodOfReport
in ascending order, setsort
to[{ "periodOfReport": { "order": "asc" } }]
.
Default:[{ "filedAt": { "order": "desc" } }]
Query String Examples
The following list demonstrates different query
examples that can be used to search EDGAR filings by various criteria.
cik:12345
cik:(123, 456, 789)
ticker:AAPL
ticker:(AAPL, MSFT, NVDA, TSLA)
companyName:"Nissan Auto Receivables" AND companyName:Trust
entities.sic:3714
entities.stateOfIncorporation:DE
entities.irsNo:710388071
entities.fileNo:"001-36743"
formType:"10-K"
formType:"10-K" OR formType:"10-Q"
formType:"10-K" AND NOT formType:"10-K/A"
accessionNo:"0001193125-23-265616"
filedAt:[2022-01-01 TO 2022-12-31]
filedAt:[2021-09-15T14:00:00 TO 2021-09-15T19:00:00]
items:"2.02" AND formType:"8-K"
items:("2.02", "5.02") AND formType:"8-K"
seriesAndClassesContractsInformation.series:S000011051
seriesAndClassesContractsInformation. classesContracts.classContract:C000120702
seriesAndClassesContractsInformation.classesContracts.ticker:ABRZX
formType:"NPORT-P" AND seriesAndClassesContractsInformation. classesContracts.classContract:C000120702
documentFormatFiles.type:*21* AND formType:"10-K"
formType:EFFECT AND registrationForm:"S-3"
id:*
formType:"10-K" AND ticker:(AAPL, MSFT, NVDA, TSLA)
formType:"10-K" AND documentFormatFiles.type:GRAPHIC
Good to Know
- Search by CIK:
cik:CIK_OF_INTEREST
orcik:(CIK_1, CIK_2, ...)
to find filings disclosed by a specific filer using its CIK, or filings from by multiple filers using their respective CIKs. When searching filings by the CIK of the filer, remove leading zeros from the CIK. For example, transform0000320193
to320193
. An example CIK search can be performed in the sandbox here. - Search by ticker:
ticker:TICKER_OF_INTEREST
orticker:(TICKER_A, TICKER_B, ...)
to retrieve filings by one or more ticker symbols of the filing companies. Ticker symbols in the filing search are case-insensitive, meaning thatticker:AAPL
andticker:aapl
will return the same results. When performing historical filing searches going back far in time, it is recommended to use a filer's CIK instead of the ticker symbol. This approach accounts for entities that underwent ticker changes or entities that have multiple security classes listed on exchanges trading under different tickers, such as Alphabet's Class A (ticker: GOOGL) and Class C (ticker: GOOG) shares. The Mapping API can be used to resolve and map ticker symbols to CIKs, and vice versa. An example ticker search can be performed in the sandbox here. - Search by company name:
companyName:"NAME OF COMPANY"
to perform a search by the company name. Enclose the company name in double quotes (e.g.,companyName:"My Trust A"
) to treat the company name as a single search term. This is useful when searching for company names that include whitespaces or special characters like "-", "." and "&". If the company name is a single word, the double quotes are optional. If the company name includes whitespaces and double quotes are omitted, each word is treated as a separate search term combined with an implicitOR
operator. For example,companyName:My Trust A
is equivalent tocompanyName:My OR *:Trust OR *:A
, which searches for filings with the words "My" in thecompanyName
field, or "Trust" in any field, or "A" in any field. - Search by EDGAR form type:
formType:"FORM TYPE OF INTEREST"
orformType:("FORM TYPE A", "FORM TYPE B", ...)
to search for filings by one or multiple EDGAR form types. Ensure to enclose form types in double quotes (e.g.,formType:"10-K"
). The Query API provides access to the entire EDGAR filings corpus, allowing searches across all form types without exception. A complete list of form types can be found here. An example form type search can be performed in the sandbox. - Search across dates:
filedAt:[START_DATE TO END_DATE]
to search for filings filed within a specific date and time range. Use square brackets[ ]
to include the start and end dates in the search. The date format isYYYY-MM-DD
orYYYY-MM-DDTHH:MM:SS
for specific times. The time component is optional. For example,filedAt:[2021-01-01 TO 2021-12-31]
captures all filings from midnight January 1, 2021 to midnight December 31, inclusive. An example with a time component isfiledAt:[2021-01-06T14:00:00 TO 2021-01-06T15:00:00]
, which returns all filings disclosed on January 6, 2021 between 2:00 PM and 3:00 PM (Eastern Time), inclusive. ThefiledAt
value in a filing metadata object is reported in Eastern Time in reference to the timezone of the EDGAR system. For example2021-01-12T16:00:54-05:00
is 4:00:54 PM Eastern Time on January 12, 2021. When performing date-time queries, there is no need to include the timezone offset ("-05:00" or "-04:00"). The API automatically converts all times to Eastern Time. An example of a date-time query is available in the sandbox here. - Nested Field Search:
documentFormatFiles.type:"EX-21" AND formType:"10-K"
- Use nested field search and combine conditions to filter filings where a specific document type is included in a particular form. For example, this query finds 10-K filings that include Exhibit 21 ("EX-21"). Nested fields can be found indocumentFormatFiles
,dataFiles
,entities
,holdings
, andseriesAndClassesContractsInformation
. Examples of nested field searches are available in our sandbox here (10-K with Exhibit 21), here (10-K with XBRL data) and here (class contract ID).
Request Examples
The following examples demonstrate a range of Query API requests. These queries are designed to help you retrieve specific EDGAR filings based on criteria such as form types, tickers of the filing companies, date ranges, and exhibit types. More examples can be found in the sandbox.
Find the most recent 10-Q filings
Return the 50 most recently filed 10-Q filings, sorted by their publication time filedAt
, starting with the newest filings.
1
{
2
"query": "formType:\"10-Q\"",
3
"from": "0",
4
"size": "50",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
Pagination: Retrieve more than 10,000 filings
The from
parameter is used to paginate through API results and is capped at 10,000. For instance, if a search query like formType:"8-K" AND ticker:AAPL
matches 700 filings, but only 50 filings can be returned per API request, the from
parameter can be incremented to retrieve all 700 filings. To retrieve all 700 filings:
- Set
"from": "0"
for the first 50 filings. - Set
"from": "50"
for the next 50, and so on, incrementing by 50 for each subsequent request until no more filings are returned.
1
{
2
"query": "formType:\"8-K\" AND ticker:AAPL",
3
"from": "0", // increase by 50 for pagination, e.g. 0, 50, 100, ...
4
"size": "50",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
If the total number of filings exceeds 10,000, the from
parameter alone will not be sufficient to retrieve all results. For example, a search for all Form 8-K filings between 2010 and 2020 might return 700,000 filings, but paginating only retrieves the first 10,000.
To fetch the entire set of filings, the query
should be broken down into multiple queries, each with a different date range filter. For example, start by searching for all 8-Ks between January 1st and 31st, 2010, and then paginate through the results:
1
{
2
// adjust the year and month once all filings have been retrieved with pagination
3
// for example: filedAt:[2010-01-01 TO 2010-01-31], filedAt:[2010-02-01 TO 2010-02-31], ...
4
"query": "formType:\"8-K\" AND filedAt:[2010-01-01 TO 2010-01-31]",
5
"from": "0", // increase by 50 for pagination, e.g. 0, 50, 100, ...
6
"size": "50",
7
"sort": [{ "filedAt": { "order": "desc" }}]
8
}
Once all filings for January 2010 have been retrieved, the date range can be adjusted to February 2010, March 2010, and so on. The process can then continue month by month, year over year, with pagination applied to each date range, until all relevant filings have been retrieved.
Searching across publication times
Return all S-1 filings published in 2021. The set of all results can be paginated by incrementing the from
parameter.
1
{
2
"query": "formType:\"S-1\" AND filedAt:[2021-01-01 TO 2021-12-31]",
3
"from": "0", // increase by 50 for pagination, e.g. 0, 50, 100, ...
4
"size": "50",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
Find Apple's most recent 10-K filings
Return Apple's 10 most recently filed 10-K filings, sorted by filedAt
, start with the newest.
1
{
2
"query": "ticker:AAPL AND formType:\"10-K\"",
3
"from": "0",
4
"size": "10",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
Find Form 10-K filings with Exhibit 21
Return the 10 most recently filed 10-Ks that have exhibit 21, sorted by filedAt
, start with the newest.
1
{
2
"query": "formType:\"10-K\" AND documentFormatFiles.type:\"EX-21\"",
3
"from": "0",
4
"size": "10",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
Form 8-K with Item 2.02 - Results of Operations and Financial Condition
Return the 10 most recently filed Form 8-K filings for material events that include Item 2.02 (Results of Operations and Financial Condition).
1
{
2
"query": "formType:\"8-K\" AND items:\"2.02\"",
3
"from": "0",
4
"size": "10",
5
"sort": [{ "filedAt": { "order": "desc" }}]
6
}
Response Format
The Query API returns the metadata of filings matching the provided search expression in JSON format. The response object includes two main fields:
total
(object) - An object with two fields,value
andrelation
.value
represents the total number of filings matching the query. Avalue
of 10,000 andrelation
of "gte" (= greater than or equal), indicates that more than 10,000 filings match the search criteria. The filing count (value
) is capped at 10,000 per search query. If a search query identifies more than 10,000 filings, thevalue
will be set to 10,000, and does not reflect the exact number of matching filings. Typically, the number of matching filings is greater than the number of filings that can be returned in a single API response. In such cases, thefrom
parameter can be incremented on subsequent API calls to paginate through the results. For example, to retrieve all filings matching the query, incrementfrom
by the value of thesize
parameter (e.g., 50) until no more filings are returned or the 10,000 filing limit is reached.filings
(array of objects) - A list of maximum 50 filings matching the provided search criteria. All fields of an object in thefilings
array are searchable. Filing format:id
(string) - System-internal unique ID of the filing object. A filing might reference multiple entities, for example, in case of Form 4 filings which reference at least one reporting person and one issuer company. In such cases, multiple filing objects are created, each with a unique ID, but all with the sameaccessionNo
.accessionNo
(string) - Accession number of filing, e.g. 0000028917-20-000033.formType
(string) - EDGAR filing form type, e.g10-K
or10-K/A
. All 150+ form types including SEC correspondences are covered. A complete list of all form types is available here.filedAt
(string) - Represents theAccepted
attribute of a filing in ISO 8601 format, and shows the date and time the filing was accepted by the EDGAR system. A filing also contains aFiling Date
attribute that only shows the date. TheAccepted
andFiling Date
attribute do not have to represent the the same date. Format:YYYY-MM-DD HH:mm:SS TZ
, e.g. 2019-12-06T14:41:26-05:00. The timezone is always in Eastern Time (ET) and the time is in 24-hour format. During daylight savings time (summer), the timezone offset is -04:00, and during standard time (winter), the offset is -05:00.cik
(string) - CIK of the filing issuer with leading0
removed, e.g.28917
.ticker
(string) - Ticker symbol of the filing company, e.g.AMOT
. A ticker is not available when non-publicly traded companies report filings, for example, in case of mutual funds or asset-backed securities.companyName
(string) - Name of primary filing company or person, e.g. Allied Motion Technologies Inc.companyNameLong
(string) - Long version of company name including the filer type (Issuer, Filer, Reporting), e.g. ALLIED MOTION TECHNOLOGIES INC (0000046129) (Issuer)description
(string) - Description of the form, e.g. Statement of changes in beneficial ownership of securities. Includes the item numbers reported in 8-K, 8-K/A, D, D/A, ABS-15G, ABS-15G/A, 1-U and 1-U/A filings, e.g. Form 8-K - Current report - Item 1.03 Item 3.03 Item 5.02 Item 9.01".linkToFilingDetails
(string) - URL of the actual filing content on sec.gov. Use this link in combination with our Filing Download API to download the filing content.linkToTxt
(string) - URL of the plain text .TXT version of the filing. The content of this file includes the entire filing and its exhibits and can exceed several 100MB in size.linkToHtml
(string) - URL of the index page (also known as filing detail page) of the filing, e.g. "sec.gov/Archives/.../0001803599-24-000156-index.htm".periodOfReport
(string, if reported) - Period of report in the formatYYYY-MM-DD
, e.g. 2021-06-08. TheperiodOfReport
has different meanings depending on the form type. For example, in Form 10-K filings, it represents the fiscal year end date. In Form 4 filings, it represents the transaction date, and in Form 13F filings, it represents the quarter end date.effectivenessDate
(string, if reported) - Effectiveness date in the formatYYYY-MM-DD
, e.g. 2021-06-08. TheeffectivenessDate
is only reported on certain form types, such as EFFECT, 18-K, TA-1, and more.registrationForm
(string, if reported) - Registration form type as reported on EFFECT forms, e.g. S-1.referenceAccessionNo
(string, if reported) - Reference accession number as reported on EFFECT forms, e.g. 0001213900-22-001446.items
(array of strings, if reported) - Items represents an array of item strings as reported on form 8-K, 8-K/A, D, D/A, ABS-15G, ABS-15G/A, 1-U, 1-U/A. For example:["Item 3.02: Unregistered Sales of Equity Securities", "Item 9.01: Financial Statements and Exhibits"]
groupMembers
(array, if reported) - Group members represents an array of member strings as reported on SC 13G, SC 13G/A, SC 13D, SC 13D/A filings, e.g.[ "c N. LITOWITZMAGNETAR CAPITAL PARTNERS LPSUPERNOVA MANAGEMENT LLC" ]
entities
(array) - A list of all entities referred to in the filing. The first item in the array always represents the filing issuer. Each array element is an object with the following keys:companyName
(string) - Company name of the entity, e.g. DILLARD'S, INC. (Issuer)cik
(string) - CIK of the entity. Leading0
are not removed here, e.g. 0000028917irsNo
(string, optional) - IRS number of the entity, e.g. 710388071stateOfIncorporation
(string, optional) - State of incorporation of entity, e.g. ARfiscalYearEnd
(string, optional) - Fiscal year end of the entity, e.g. 0201sic
(string, optional) - SIC of the entity, e.g. 5311 Retail-Department Storestype
(string, optional) - Type of the filing being filed. Same asformType
, e.g. 4act
(string, optional) - The SEC act pursuant to which the filing was filed, e.g. 34fileNo
(string, optional) - Filer number of the entity, e.g. 001-06140filmNo
(string, optional) - Film number of the entity, e.g. 20575664
documentFormatFiles
(array) - An array listing all primary files of the filing, including its exhibits. The first item of the array always represents the filing itself. The last item of the array always represents the text .TXT version of the filing. All other items can represent exhibits, press releases, PDF documents, presentations, graphics, XML files, and more. An array item is represented as follows:sequence
(string, optional) - The sequence number of the file indicating the order of the files in the filing, e.g. 1.description
(string, optional) - Description of the file, e.g. EXHIBIT 31.1.documentUrl
(string) - URL to the file on SEC.gov. The URL includes the file extension, such as .HTML, .PDF, .TXT, .XML, etc.type
(string, optional) - Type of the file, e.g. EX-32.1, GRAPHIC or 10-Q.size
(string, optional) - Size of the file in bytes, e.g. 6627216.
dataFiles
(array) - List of data files primarily used for XBRL filings. Each item has the following fields:sequence
(string) - Sequence number of the file indicating its order in the filing, e.g. 1.description
(string) - Description of the file, e.g. XBRL INSTANCE DOCUMENTdocumentUrl
(string) - URL to the file on SEC.gov. The URL includes the file extension, such as .XSD or .XML.type
(string, optional) - Type of the file, e.g. EX-101.INS, EX-101.DEF or EX-101.PREsize
(string, optional) - Size of the file in bytes, e.g. 6627216
seriesAndClassesContractsInformation
(array) - List of series and classes/contracts information.series
(string) - Series ID, e.g. S000001297.name
(string) - Name of entity, e.g. PRUDENTIAL ANNUITIES LIFE ASSUR CORP VAR ACCT B CL 1 SUB ACCTSclassesContracts
(array) - List of classes/contracts. Each list item has the following keys:classContract
(string) - Class/Contract ID, e.g. C000011787.name
(string) - Name of class/contract, e.g. Class L.ticker
(string) - Ticker of the class/contract, e.g. URTLX.
Response Example
The following example shows the JSON response with the metadata of three filings matching the search criteria. The response includes the total number of filings matching the query and the metadata of the matching filings.
1
{
2
"total": {
3
"value": 10000,
4
"relation": "gte"
5
},
6
"filings": [
7
{
8
"id": "9bb018bb35b26df92204a0afba52c30a",
9
"accessionNo": "0001437749-20-002201",
10
"cik": "924383",
11
"ticker": "GNSS",
12
"companyName": "Genasys Inc.",
13
"companyNameLong": "Genasys Inc. (Filer)",
14
"formType": "10-Q",
15
"periodOfReport": "2019-12-31",
16
"description": "Form 10-Q - Quarterly report [Sections 13 or 15(d)]",
17
"filedAt": "2020-02-10T19:28:05-05:00",
18
"linkToTxt": "https://www.sec.gov/Archives/edgar/data/924383/0001437749-20-002201.txt",
19
"linkToHtml": "https://www.sec.gov/Archives/edgar/data/924383/0001437749-20-002201-index.htm",
20
"linkToFilingDetails": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/lrad20191231_10q.htm",
21
"entities": [
22
{
23
"companyName": "Genasys Inc. (Filer)",
24
"cik": "0000924383",
25
"irsNo": "870361799",
26
"stateOfIncorporation": "DE",
27
"fiscalYearEnd": "0930",
28
"type": "10-Q",
29
"act": "34",
30
"fileNo": "000-24248",
31
"filmNo": "20593428",
32
"sic": "3651 Household Audio & Video Equipment"
33
}
34
],
35
"documentFormatFiles": [
36
{
37
"sequence": "1",
38
"description": "FORM 10-Q",
39
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/lrad20191231_10q.htm",
40
"type": "10-Q",
41
"size": "938119"
42
},
43
{
44
"sequence": "2",
45
"description": "EXHIBIT 31.1",
46
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/ex_171266.htm",
47
"type": "EX-31.1",
48
"size": "13563"
49
},
50
{
51
"sequence": "3",
52
"description": "EXHIBIT 31.2",
53
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/ex_171267.htm",
54
"type": "EX-31.2",
55
"size": "13507"
56
},
57
{
58
"sequence": "4",
59
"description": "EXHIBIT 32.1",
60
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/ex_171268.htm",
61
"type": "EX-32.1",
62
"size": "8102"
63
},
64
{
65
"sequence": "11",
66
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/logo.jpg",
67
"type": "GRAPHIC",
68
"size": "5579"
69
},
70
{
71
"sequence": " ",
72
"description": "Complete submission text file",
73
"documentUrl": "https://www.sec.gov/Archives/edgar/data/924383/000143774920002201/0001437749-20-002201.txt",
74
"type": " ",
75
"size": "6627216"
76
}
77
],
78
"dataFiles": [
79
{
80
"sequence": "5",
81
"description": "XBRL INSTANCE DOCUMENT",
82
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231.xml",
83
"type": "EX-101.INS",
84
"size": "1561458"
85
},
86
{
87
"sequence": "6",
88
"description": "XBRL TAXONOMY EXTENSION SCHEMA",
89
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231.xsd",
90
"type": "EX-101.SCH",
91
"size": "70974"
92
},
93
{
94
"sequence": "7",
95
"description": "XBRL TAXONOMY EXTENSION CALCULATION LINKBASE",
96
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231_cal.xml",
97
"type": "EX-101.CAL",
98
"size": "49944"
99
},
100
{
101
"sequence": "8",
102
"description": "XBRL TAXONOMY EXTENSION DEFINITION LINKBASE",
103
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231_def.xml",
104
"type": "EX-101.DEF",
105
"size": "464656"
106
},
107
{
108
"sequence": "9",
109
"description": "XBRL TAXONOMY EXTENSION LABEL LINKBASE",
110
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231_lab.xml",
111
"type": "EX-101.LAB",
112
"size": "399474"
113
},
114
{
115
"sequence": "10",
116
"description": "XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE",
117
"documentUrl": "/Archives/edgar/data/924383/000143774920002201/lrad-20191231_pre.xml",
118
"type": "EX-101.PRE",
119
"size": "505337"
120
}
121
]
122
},
123
{
124
"id": "df49e5e7adce70be6673b54d616f51a2",
125
"accessionNo": "0001104659-20-015211",
126
"cik": "1529463",
127
"ticker": "FTSI",
128
"companyName": "FTS International, Inc.",
129
"companyNameLong": "FTS International, Inc. (Issuer)",
130
"formType": "4",
131
"periodOfReport": "2020-02-06",
132
"description": "Form 4 - Statement of changes in beneficial ownership of securities",
133
"filedAt": "2020-02-10T21:49:01-05:00",
134
"linkToTxt": "https://www.sec.gov/Archives/edgar/data/1529463/0001104659-20-015211.txt",
135
"linkToHtml": "https://www.sec.gov/Archives/edgar/data/1529463/0001104659-20-015211-index.htm",
136
"linkToFilingDetails": "https://www.sec.gov/Archives/edgar/data/1529463/000110465920015211/xslF345X03/a4.xml",
137
"entities": [
138
{
139
"companyName": "FTS International, Inc. (Issuer)",
140
"cik": "0001529463",
141
"irsNo": "451610731",
142
"stateOfIncorporation": "DE",
143
"fiscalYearEnd": "1231",
144
"sic": "1389 Oil & Gas Field Services, NEC"
145
},
146
{
147
"companyName": "Petersen Buddy (Reporting)",
148
"cik": "0001700869",
149
"type": "4",
150
"act": "34",
151
"fileNo": "001-38382",
152
"filmNo": "20593681"
153
}
154
],
155
"documentFormatFiles": [
156
{
157
"sequence": "1",
158
"description": "4",
159
"documentUrl": "https://www.sec.gov/Archives/edgar/data/1529463/000110465920015211/xslF345X03/a4.xml",
160
"type": "4",
161
"size": " "
162
},
163
{
164
"sequence": "1",
165
"description": "4",
166
"documentUrl": "https://www.sec.gov/Archives/edgar/data/1529463/000110465920015211/a4.xml",
167
"type": "4",
168
"size": "3459"
169
},
170
{
171
"sequence": " ",
172
"description": "Complete submission text file",
173
"documentUrl": "https://www.sec.gov/Archives/edgar/data/1529463/000110465920015211/0001104659-20-015211.txt",
174
"type": " ",
175
"size": "5101"
176
}
177
],
178
"dataFiles": []
179
},
180
{
181
"id": "b5f3f0e95d890fd3107b83ec2d6bc115",
182
"accessionNo": "0001193125-20-030183",
183
"cik": "814453",
184
"ticker": "NWL",
185
"companyName": "NEWELL BRANDS INC.",
186
"companyNameLong": "NEWELL BRANDS INC. (Filer)",
187
"formType": "8-K/A",
188
"periodOfReport": "2020-02-04",
189
"description": "Form 8-K/A - Current report: [Amend] - Item 5.02",
190
"items": [
191
"Item 5.02: Departure of Directors or Certain Officers; Election of Directors; Appointment of Certain Officers: Compensatory Arrangements of Certain Officers"
192
],
193
"filedAt": "2020-02-10T21:59:39-05:00",
194
"linkToTxt": "https://www.sec.gov/Archives/edgar/data/814453/0001193125-20-030183.txt",
195
"linkToHtml": "https://www.sec.gov/Archives/edgar/data/814453/0001193125-20-030183-index.htm",
196
"linkToFilingDetails": "https://www.sec.gov/ix?doc=/Archives/edgar/data/814453/000119312520030183/d884349d8ka.htm",
197
"entities": [
198
{
199
"companyName": "NEWELL BRANDS INC. (Filer)",
200
"cik": "0000814453",
201
"irsNo": "363514169",
202
"stateOfIncorporation": "DE",
203
"fiscalYearEnd": "1231",
204
"type": "8-K/A",
205
"act": "34",
206
"fileNo": "001-09608",
207
"filmNo": "20593687",
208
"sic": "3089 Plastics Products, NEC"
209
}
210
],
211
"documentFormatFiles": [
212
{
213
"sequence": "1",
214
"description": "FORM 8-K/A",
215
"documentUrl": "https://www.sec.gov/ix?doc=/Archives/edgar/data/814453/000119312520030183/d884349d8ka.htm",
216
"type": "8-K/A",
217
"size": "29035"
218
},
219
{
220
"sequence": " ",
221
"description": "Complete submission text file",
222
"documentUrl": "https://www.sec.gov/Archives/edgar/data/814453/000119312520030183/0001193125-20-030183.txt",
223
"type": " ",
224
"size": "152541"
225
}
226
],
227
"dataFiles": [
228
{
229
"sequence": "2",
230
"description": "XBRL TAXONOMY EXTENSION SCHEMA",
231
"documentUrl": "/Archives/edgar/data/814453/000119312520030183/nwl-20200204.xsd",
232
"type": "EX-101.SCH",
233
"size": "3065"
234
},
235
{
236
"sequence": "3",
237
"description": "XBRL TAXONOMY EXTENSION LABEL LINKBASE",
238
"documentUrl": "/Archives/edgar/data/814453/000119312520030183/nwl-20200204_lab.xml",
239
"type": "EX-101.LAB",
240
"size": "18079"
241
},
242
{
243
"sequence": "4",
244
"description": "XBRL TAXONOMY EXTENSION PRESENTATION LINKBASE",
245
"documentUrl": "/Archives/edgar/data/814453/000119312520030183/nwl-20200204_pre.xml",
246
"type": "EX-101.PRE",
247
"size": "11383"
248
},
249
{
250
"sequence": "9",
251
"description": "EXTRACTED XBRL INSTANCE DOCUMENT",
252
"documentUrl": "/Archives/edgar/data/814453/000119312520030183/d884349d8ka_htm.xml",
253
"type": "XML",
254
"size": "3470"
255
}
256
]
257
}
258
]
259
}