The Form APP WD Files Dataset is a complete EDGAR archive of Form APP WD and Form APP WD/A submissions — the formal notices by which an applicant withdraws a pending application for an SEC exemptive or other discretionary order, almost always under the Investment Company Act of 1940 and Rule 0-5. One record corresponds to a single EDGAR submission, identified by its accession number, and bundles the parsed EDGAR header (metadata.json) together with the original withdrawal letter as HTML or plain text and any accompanying non-image exhibits. The filer population is dominated by registered investment companies, business development companies, investment advisers, and their affiliates acting as co-applicants. Coverage starts in February 2002, when EDGAR adopted the dedicated APP WD form-type code, and continues through the present.
Programmatically retrieve the full list of dataset archive files, download URLs and dataset metadata.
Dataset Index JSON API
Download the entire dataset as a single archive file.
Download Entire Dataset:
Download a single container file (e.g. monthly archive) from the dataset.
Download Single Container:
The dataset packages every EDGAR submission tagged with form type APP WD or APP WD/A. Form APP WD is the procedural instrument by which an applicant — an investment company, its adviser, or an affiliated party — withdraws a pending application requesting an SEC order, before the Commission issues a final determination. The overwhelming majority of these withdrawals sit in the Investment Company Act of 1940 context, terminating applications for exemptive relief under provisions such as Section 6(c), Section 17 affiliated-transaction relief, Section 12(d)(1) fund-of-funds relief, multi-class relief, and BDC and closed-end co-investment relief under Sections 17(d) and 57(i). Form APP WD/A is an amendment to a previously filed APP WD, used to correct, supplement, or restate the original withdrawal notice.
The unit of analysis is the individual withdrawal filing — not the underlying application that is being withdrawn, and not any individual document inside the submission. Each accession is delivered as a folder inside a monthly ZIP container; the container format is ZIP and the included file types are HTML, JSON, TXT, and PDF. Coverage begins with EDGAR's adoption of the APP WD code in February 2002. Withdrawals filed earlier under Rule 0-5 exist procedurally but are not classified by this code and therefore are not part of the dataset.
One record in the Form APP WD Files Dataset is a single EDGAR submission of Form APP WD or Form APP WD/A, identified by its EDGAR accession number and packaged as a folder inside a monthly ZIP container. The folder name is the 18-digit accession number with all dashes stripped (for example, 000139834425019029 for accession 0001398344-25-019029). Inside that folder the dataset bundles a metadata.json header file together with the original EDGAR submission documents: typically the primary withdrawal letter as HTML, occasionally a plain-text primary document for older filings, and on rare occasions an accompanying PDF exhibit. Image binaries that were part of the original submission (JPG, PNG, GIF) are deliberately stripped before packaging.
In substance, a Form APP WD filing is a short, formal letter from the applicant or its counsel (commonly a major investment-management law firm such as Dechert, K&L Gates, Ropes & Gray, or Stradley Ronon) addressed to the Secretary of the Commission. The letter identifies the original application by SEC file number and filing date, recites the statutory provisions under which relief had been sought (for example, Section 6(c), co-investment relief, multi-class relief, or relief from various provisions of Sections 12, 17, 18, or 61 of the 1940 Act), states the scope of the withdrawal (full or partial, and which specific applicants are withdrawing), and closes with a counsel signature block. There is no item-by-item disclosure framework, no financial schedule, and no structured data instance — the filing's content is essentially narrative legal correspondence wrapped in EDGAR's submission machinery.
A record has two stacked content layers:
metadata.json file that captures the parsed EDGAR header for the submission: form type, accession number, filing timestamp, EDGAR-side URLs, the document-format manifest, the filer/registrant entity blocks, and ancillary investment-company series/class metadata.<DOCUMENT> wrapper around an inline HTML or plain-text payload.The folder layout is flat: metadata.json and the primary document sit side by side at the root of the accession folder, with no nested subdirectories. When a filing carried additional non-image exhibits in its original EDGAR submission (for example a supporting PDF), those files are placed alongside the primary document in the same folder. Image files referenced in the document manifest are not materialized on disk because the dataset publisher strips them.
metadata.json schemaThe metadata file is a single JSON object whose top-level fields describe the filing as a whole and whose nested arrays describe its components. The fields that consistently carry meaningful content are:
formType — Always "APP WD" or "APP WD/A".accessionNo — The EDGAR accession number in dashed form (for example 0001398344-25-019029), the canonical identifier.filedAt — ISO-8601 timestamp with timezone offset, recording EDGAR acceptance.description — Human-readable description of the form, frequently the long-form EDGAR label (for example, "Form APP WD - Withdrawal of an Application for exemption [Section 12(g)] or from filing certain reports [Section 13(a)]").linkToFilingDetails — URL to the primary HTML document on EDGAR.linkToHtml — URL to the EDGAR filing-index page.linkToTxt — URL to the complete-submission .txt file on EDGAR.linkToXbrl — Empty string for APP WD filings.id — A 32-character hex identifier assigned by sec-api.io.documentFormatFiles — Array describing every file in the original EDGAR submission (see below).dataFiles — Array reserved for XBRL data files; empty for APP WD filings.seriesAndClassesContractsInformation — Array of investment-company series/class metadata; populated only when the EDGAR header carries series/class identifiers.entities — Array of filer/registrant blocks (see below).documentFormatFilesEach element corresponds to one file enumerated in the original EDGAR submission and carries:
sequence — String sequence number used by EDGAR (a single space character for the complete-submission text file).size — Byte size as a string.documentUrl — Direct URL to the file on www.sec.gov/Archives/edgar/....type — Document type code, typically APP WD, APP WD/A, GRAPHIC for image attachments, or blank for the complete-submission text file.description — Optional EDGAR description, such as GRAPHIC or Complete submission text file.This array is the authoritative manifest for what the original submission contained. Readers can reconstruct the full original filing by following the documentUrl values back to EDGAR even when, for example, image attachments have been excluded from the local copy.
entitiesThe entities array carries one block per filer or registrant lifted from the EDGAR header. Investment-company withdrawals frequently list multiple entities — for example, an adviser plus one or more registered funds plus affiliated partnerships — each with its own block. Each block contains:
companyName — Legal name with a role suffix in parentheses, such as "Partners Group Lending Fund, LLC (Filer)".cik — Central Index Key.type — Form type for that entity (APP WD or APP WD/A).act — Securities-act code; 98 indicates the Investment Company Act of 1940 and predominates in this dataset.fileNo — SEC file number, frequently in the 803-... range (registered investment adviser file series) or the 812-... range (exemptive application series).filmNo — EDGAR film number assigned at acceptance.irsNo — IRS employer-identification number, when reported.stateOfIncorporation — Two-letter state or jurisdiction code.fiscalYearEnd — MMDD fiscal-year-end date, present on some entities.The act and fileNo fields are particularly useful for confirming that the underlying application was an Investment Company Act application and for cross-referencing the application being withdrawn.
The primary withdrawal document is delivered exactly as EDGAR distributed it: an HTML body inside an SGML <DOCUMENT> envelope. The shape is:
1
<DOCUMENT>
2
<TYPE>APP WD
3
<SEQUENCE>1
4
<FILENAME>fp0095380-1_appwd.htm
5
<TEXT>
6
<HTML>
7
<HEAD><TITLE></TITLE></HEAD>
8
<BODY> ... withdrawal letter ...
9
</BODY>
10
</HTML>
11
</TEXT>
12
</DOCUMENT>
<TYPE> repeats the form type code, <SEQUENCE> records the document's order in the original submission, <FILENAME> carries the on-disk filename, and <TEXT> wraps the actual HTML payload. The wrapper is identical across vintages; only the payload format inside <TEXT> differs (HTML for modern filings, flat plain text for older ones). Parsers should expect to strip the SGML envelope before treating the inner body as standalone HTML or text.
Although Form APP WD has no formal Item-numbered structure, the body of a typical withdrawal letter is organized as the following ordered components:
812-XXXXX for Investment Company Act exemptive applications), and by the original filing date.The letters are short — typically a single page of substantive text — and contain little or no tabular content. For Form APP WD/A amendments, the letter additionally references the prior withdrawal notice by date and explains what is being amended, typically a correction to the scope of withdrawal, the addition or removal of a withdrawing applicant, or a clarification of the statutory citations.
For each accession number, the dataset includes:
metadata.json..htm/.html file delivered inside the SGML wrapper.<TEXT> wrapping flat letter text rather than HTML markup)..pdf attachments.documentFormatFiles manifest, which preserves an authoritative record of every file in the original submission, including those excluded locally.The file types found in the dataset are HTML, JSON, TXT, and PDF.
Several elements of the original EDGAR submission are not materialized inside the record folder:
GRAPHIC documents in the manifest (JPG, PNG, GIF) are stripped by the dataset publisher. The documentFormatFiles entry is retained so the existence of the graphic is still discoverable, and documentUrl can be used to retrieve the binary from EDGAR if needed..txt file. EDGAR generates a single concatenated .txt file representing the entire SGML submission. It is referenced via linkToTxt and listed in documentFormatFiles, but is generally not copied into the record folder because the individual constituent documents are already present.fileNo field in entities and the Re-line in the letter body are the cross-reference points.dataFiles is empty and linkToXbrl is an empty string.The disclosure substance of Form APP WD has been stable since EDGAR began accepting these filings in February 2002. Because the form has no item-level disclosure schedule and is fundamentally a short request letter, there have been no material revisions to required content over the dataset's coverage window. Filings from 2002, 2010, and 2025 share the same essential anatomy: a letter to the Commission identifying the application, citing the statutory provisions, stating the scope and reason for withdrawal, and signed by counsel or an officer.
What has shifted is the file format of the primary document. Earlier filings are more likely to ship a plain-text primary document (.txt) inside the SGML <DOCUMENT> wrapper, reflecting EDGAR's pre-HTML conventions; later filings predominantly use inline HTML (.htm) inside the same SGML wrapper. The wrapper itself — <DOCUMENT>, <TYPE>, <SEQUENCE>, <FILENAME>, <TEXT> — is unchanged across the period, which makes parsing uniform regardless of payload format. The metadata.json representation of the header is a dataset-side artifact and applies uniformly to every record.
812-... for Investment Company Act exemptive applications). The entity-level fileNo may instead reflect the registrant's own 803-... adviser file number, so the body of the letter is often the more reliable pointer to the application than the entity block.entities — an adviser plus one or more affiliated funds, for instance — each with its own CIK, file number, and state of incorporation. The first entity is not necessarily the lead applicant; the role suffix in companyName (for example "(Filer)") and the textual structure of the letter clarify roles.documentFormatFiles array can list files that are not present on disk. When a GRAPHIC entry appears with no corresponding local file, this is by design rather than missing data.The filer is the applicant (or group of co-applicants) in a pending SEC application proceeding who has decided to withdraw that application before the Commission acts on it. Form APP WD is the withdrawal notice; APP WD/A is an amendment to a previously filed APP WD, not a withdrawal of a different application.
Because the underlying applications are overwhelmingly Investment Company Act of 1940 matters, the filer population is dominated by 1940 Act regulated entities and their affiliates:
The EDGAR filing of record is associated with the CIK used to submit it; co-applicants are listed in the body of the notice and in the EDGAR header entities block. Most 1940 Act applications are joint, so most APP WD records list multiple parties even though one CIK is the submitter.
Form APP WD is event-driven, not periodic. It is filed when the applicant voluntarily abandons a pending application before the SEC issues a final order. There is no statutory deadline; withdrawal can occur any time while the application is pending. Common triggers include:
Withdrawals can be filed before the SEC issues a notice of application, after a notice but before an order, or in clusters following a codifying rulemaking.
The procedural basis for withdrawal lies primarily in Rule 0-5 under the Investment Company Act of 1940 (17 CFR 270.0-5), which governs the procedure for applications for orders under the 1940 Act and authorizes an applicant to withdraw a pending application by written notice. Parallel application-and-withdrawal procedures exist under analogous SEC rules when the Commission's order-issuing authority is invoked under another federal securities statute (for example, applications under the Advisers Act, the Exchange Act, or the Trust Indenture Act).
The statutory backdrop is the SEC's authority to issue exemptive and other discretionary orders, principally:
Common categories of relief in the underlying applications include Section 6(c) exemptive orders, Section 17 affiliated-transaction and joint-enterprise relief, Section 12(d)(1) fund-of-funds relief, multi-manager (manager-of-managers) relief, BDC and closed-end fund co-investment relief under Sections 17(d) and Section 57(i), and historically ETF exemptive relief (now largely superseded by Rule 6c-11).
Filing on Form APP WD is voluntary and applicant-initiated. There is no filing deadline, no fiscal-period trigger, and no look-back or look-forward window. The submission consists of a short notice or letter to the Secretary of the Commission identifying the original application by SEC file number and date, the applicants, the statutory provisions originally invoked, and a brief reason for withdrawal. EDGAR-tagged APP WD records in this dataset begin in February 2002, when EDGAR adopted the dedicated form-type code; withdrawals filed earlier under Rule 0-5 exist procedurally but are not classified by this code.
[RW](https://www.sec.gov/submit-filings/filer-support-resources/how-do-i-guides/withdraw-registration-or-certification-statement) (Securities Act registration withdrawal under Rule 477), [AW](https://www.sec.gov/submit-filings/filer-support-resources/how-do-i-guides/withdraw-registration-or-certification-statement) (withdrawal of a registration statement amendment), or [N-8F](https://www.sec.gov/files/formn-8f.pdf) (deregistration of a registered investment company under Rule 0-2). Each addresses a different procedural posture.Several adjacent forms share either the "withdrawal" label or the 1940 Act application workflow, and are routinely confused with APP WD. The comparisons below isolate each on four axes: governing Act, filer, trigger, and outcome.
APP WD/A is an amendment to a previously filed APP WD. It corrects identifiers, citations, joint-applicant lists, or the stated reason for withdrawal; it does not initiate a separate withdrawal. For accession-level analysis, each APP WD/A should be linked to the original APP WD it amends rather than counted as a distinct termination event.
APP WD is uniquely scoped to one procedural moment: the applicant-initiated termination of a pending SEC application for an order, almost exclusively under the 1940 Act and Rule 0-5, before any order issues. It does not withdraw securities offerings (RW), intermediary registration applications (AW), investment-company registration (N-8F), or Exchange Act reporting status (Form 15). It does not record the application itself (40-APP), its public notice (APP NTC), or the resulting exemptive order (IC Release). It is the negative-outcome counterpart to a granted exemption, and the only EDGAR record that specifically marks the closure of a 1940 Act application proceeding without an order. A full lifecycle view of exemptive relief requires pairing APP WD with the underlying 40-APP filings, APP NTC notices, and published orders; on its own, APP WD answers only which applications were abandoned and, often, why.
Form APP WD and APP WD/A filings mark the end of a pending exemptive application under the Investment Company Act of 1940. The dataset serves professionals tracking application lifecycles, fund product strategy, and SEC exemptive-relief practice. Across roles, four fields do most of the work: the entities array (applicant and affiliates), the inline HTML withdrawal letter (stated reason), the filing date (time-to-withdrawal), and the statutory citations (relief category).
Investment Company Act lawyers use the dataset to track abandoned applications by their clients and competing applicants. The entities array identifies the applicant; statutory citations classify the relief (multi-class, ETF, fund-of-funds, co-investment, interfund lending, manager-of-managers, joint transactions); the HTML letter signals whether withdrawal followed unresolvable staff comments, a superseding rule, or a restructured transaction. Counsel use this to calibrate drafting strategy on live applications and advise clients on whether to refile or pursue an alternative route.
In-house compliance teams check whether relief their complex relies on, or relief sought by sub-advisers and affiliates, was withdrawn rather than granted. Filer name, affiliated entities, and statutory citations feed exemptive-order inventories and the periodic review of conditions on outstanding orders.
Product strategists treat APP WD filings as a competitive-intelligence signal. A competitor withdrawal, dated and tied to a relief category, indicates a shelved or restructured product (new ETF wrapper, interval-fund mechanic, non-transparent ETF, novel share class, closed-end structure). Time-to-withdrawal, computed from original application date to APP WD date, proxies staff friction in specific product categories and informs filing timing.
Former staff now advising fund clients use the corpus to maintain pattern recognition on which relief types tend to be withdrawn, typical duration before withdrawal, and the language applicants use to characterize reasons. This shapes counsel on whether to pursue an order, seek no-action relief, or wait for rulemaking.
Analysts covering asset management and digital-asset products use applicant CIK, filing date, and implied relief category to flag when a sponsor abandons a regulatory pathway, particularly for crypto-related funds, tokenized structures, and novel ETF mechanics. Joined to the original applications, the data supports abandonment-rate dashboards over time.
In acquisitions of registered advisers or fund complexes, deal counsel verify whether relief a target describes as "pending" still exists. A withdrawal can materially change deal value when the target's product roadmap depended on the requested order. Diligence teams match the entities array to target affiliates, compare filing dates to the deal timeline, and read the letter to assess whether the application can be refiled. The findings feed reps and warranties, indemnification, and post-closing integration.
Lawyers and consultants managing terminations, mergers, and adviser wind-downs use the dataset to confirm that pending applications tied to a winding-down complex have been formally withdrawn. Entity identifiers, original application references, and filing dates surface orphaned applications. APP WD/A amendments matter when an original withdrawal required correction.
Drafters use the historical archive of inline HTML letters as a precedent library: how to characterize the reason for withdrawal, how to reference the underlying application, and how to format multi-applicant withdrawals where several entities appear in the entities array. The dataset is low-volume but precise, which makes prior letters a practical drafting model.
Researchers use the full record set to study the exemptive-application process empirically: time-to-withdrawal distributions, withdrawal rates by relief category, the effect of rulemaking events (such as ETF rule adoption) on abandonment, and repeat-applicant patterns. CIK, filing date, and statutory citations anchor quantitative work; letter text supports content analysis of stated reasons.
Engineers building retrieval systems over EDGAR use APP WD records to link applications, withdrawals, and resulting orders across filing types. Metadata JSON, the HTML letter, and entities cross-references support entity linking, application-lifecycle reconstruction, and grounded answers about the status of specific exemptive requests.
Drafters preparing a new APP WD or APP WD/A pull the inline HTML letters and group them by the statutory citations in the Re-line and opening paragraph (Section 6(c), 17(b), 17(d), 18, 61(a), and so on). The letter bodies serve as templates for phrasing the reason for withdrawal, scoping a partial withdrawal, and listing multiple applicants from the entities array. The output is a curated, citation-indexed letter bank that shortens drafting time on live withdrawals.
Joining each APP WD record to the underlying 40-APP application by the 812-... file number cited in the Re-line yields a duration from initial filing to withdrawal. Bucketing those durations by relief category (multi-class, co-investment, interfund lending, non-transparent ETF, crypto) surfaces categories where the staff review pipeline is stalling. Product and legal teams use the resulting distributions to set realistic filing timelines and to decide whether to pursue an order, seek no-action relief, or wait for rulemaking.
Filtering APP WD filings around the September 2019 effective date of Rule 6c-11 (and similar later rulemakings) isolates the cohort of ETF exemptive applications withdrawn because the requested relief became codified. The reason language inside the letter confirms whether the trigger was the new rule, a superseding application, or a sponsor pivot. The result is a clean event-study cohort linking rulemaking to abandonment behavior.
Filtering by sponsor CIK in the entities array and reading the relief category from the letter reveals which product attempts a competitor abandoned and when. Recurrent withdrawals from a single complex on the same relief category suggest a structural product roadblock; an isolated withdrawal followed by a new application points to a re-scoped filing. Strategy teams feed this into competitive product trackers and abandonment-rate dashboards.
In acquisitions of advisers or fund complexes, deal counsel match target affiliates against the entities array and fileNo values to confirm whether relief the target describes as "pending" has in fact been withdrawn. The letter clarifies whether withdrawal was full or partial and whether refiling remains viable. The finding directly affects deal value when the target's product roadmap depended on the order, and feeds reps and warranties and post-closing integration plans.
Engineers chunk the HTML letter body, attach accessionNo, applicant CIKs, statutory citations, and filedAt as metadata, and index the result alongside the underlying 40-APP and any APP NTC notices. The index answers grounded questions such as "is application 812-XXXXX still alive?" and "why did sponsor X abandon its co-investment relief request?" Cross-references via the Re-line file number stitch application, withdrawal, and order across filing types.
Researchers use the full corpus, joined to 40-APP filings and IC Releases, to estimate withdrawal rates by relief category, time-to-withdrawal distributions, repeat-applicant behavior, and the response of abandonment rates to specific rulemakings or staff guidance. The entities array, filedAt, and statutory citations anchor the quantitative work; the letter text supports content analysis of stated reasons.
Dataset Index JSON API: https://api.sec-api.io/datasets/form-app-wd-files.json
This endpoint returns dataset-level metadata and the list of available container files. The metadata includes the dataset name, description, last update timestamp, earliest sample date (2002-02-01), total record and size counts, covered form types (APP WD, APP WD/A), the container format (ZIP), and the included file types (HTML, JSON, TXT, PDF). For each container, the response includes its key, size, record count, last update timestamp, and direct download URL. Use this endpoint to monitor which containers were refreshed in the most recent run and to decide which containers to download incrementally.
This endpoint does not require an API key.
Example response:
1
{
2
"datasetId": "1f13365b-9ae0-696e-90e6-31a30ca53e39",
3
"datasetDownloadUrl": "https://api.sec-api.io/datasets/form-app-wd-files.zip",
4
"name": "Form APP WD Files Dataset",
5
"updatedAt": "2026-04-21T02:55:39.149Z",
6
"earliestSampleDate": "2002-02-01",
7
"totalRecords": 389,
8
"totalSize": 1677304,
9
"formTypes": ["APP WD", "APP WD/A"],
10
"containerFormat": "ZIP",
11
"fileTypes": ["HTML", "JSON", "TXT", "PDF"],
12
"containers": [
13
{
14
"downloadUrl": "https://api.sec-api.io/datasets/form-app-wd-files/2026/2026-04.zip",
15
"key": "2026/2026-04.zip",
16
"size": 18432,
17
"records": 3,
18
"updatedAt": "2026-04-21T02:55:39.149Z"
19
}
20
]
21
}
Download Entire Dataset: https://api.sec-api.io/datasets/form-app-wd-files.zip?token=YOUR_API_KEY
Downloads the full dataset as a single ZIP archive containing every container file. This endpoint requires an API key.
Download Single Container: https://api.sec-api.io/datasets/form-app-wd-files/2026/2026-04.zip?token=YOUR_API_KEY
Downloads one individual monthly container instead of the full archive, which is useful for incremental updates. This endpoint requires an API key.
The dataset covers Form APP WD and Form APP WD/A submissions on EDGAR. APP WD is the formal notice by which an applicant withdraws a pending application for an SEC exemptive or other discretionary order; APP WD/A is an amendment to a previously filed APP WD.
One record is a single EDGAR submission of Form APP WD or APP WD/A, identified by its accession number. Each record is delivered as a folder containing a parsed metadata.json header file alongside the original withdrawal letter (HTML or, for older filings, plain text) and any non-image exhibits such as occasional PDF attachments.
There is no mandatory filing requirement; APP WD is voluntary and applicant-initiated. Filers are the applicants in pending SEC application proceedings — predominantly registered investment companies, business development companies, investment advisers, and their affiliates — who choose to abandon a pending application before the Commission acts on it, most often pursuant to Rule 0-5 under the Investment Company Act of 1940.
The earliest sample date is February 2002, when EDGAR adopted the dedicated APP WD form-type code. Coverage continues through the present. Withdrawals filed under Rule 0-5 before February 2002 exist procedurally but were not classified under this code and are therefore not part of the dataset.
Form RW withdraws a pending Securities Act registration statement for a securities offering; Form N-8F deregisters an investment company under Section 8(f) of the 1940 Act. APP WD does neither — it terminates a single pending application for an SEC order while leaving the applicant's registration status fully intact. APP WD is also the negative-outcome counterpart to a granted exemptive order (an IC Release): the two outcomes are mutually exclusive for any single application.
Each record contains a metadata.json file (parsed EDGAR header), the primary withdrawal document as HTML (or plain text for older filings) inside an SGML <DOCUMENT> wrapper, and any non-image exhibits that accompanied the original submission, including occasional PDFs. The dataset's overall file types are HTML, JSON, TXT, and PDF, and containers are distributed as monthly ZIP archives. Form APP WD does not carry XBRL, so dataFiles is empty and linkToXbrl is an empty string.
The most reliable join key is the SEC file number cited in the Re-line of the withdrawal letter, typically in the 812-... series for Investment Company Act exemptive applications. The entity-level fileNo in entities may instead reflect the registrant's 803-... adviser file number, so for cross-referencing the application being withdrawn the letter body is generally more authoritative than the entity block.