v1

latestOpenAPI 3.1.02026-08-061838260.7 KB
Submission Status API

Check Multiple Submission Statuses

When an authorized filer requests the status of multiple submissions that the filer made, the Check Multiple Submission Statuses API will respond with the current status of each, if available.

post/submission/status

Request body

accessionNumbersstring[] required

The list of accession numbers that the caller wants to receive status for, maximum 25

Response

Ok. A submission filed by the authorized filer, with at least one of the given accession numbers, was found

trackingstring

A universal tracking identifier that can be used by applications to keep track of individual requests sent to the EDGAR API. The tracking identifier correlates all actions taken in the course of a single request. If seeking support from the EDGAR Help Desk this will be a useful piece of information to provide.

locatorstring

A short identifier that can be used by the EDGAR Help Desk to locate the tracking identifier within the EDGAR system.

Example response

{
  "responses": [
    {
      "accessionNumber": "0000000001-22-000001",
      "messages": [
        {
          "content": "The Filer API Key making this request will expire in less than two weeks."
        }
      ],
      "mode": "LIVE",
      "status": "SUSPENDED",
      "receivedDate": "2022-03-10T12:15:50-04:00",
      "filingDate": "2022-03-10T12:15:50-04:00",
      "acceptedDate": "2022-03-10T12:15:50-04:00",
      "suspendedDate": "2022-03-10T12:15:50-04:00",
      "submissionMessages": [
        {
          "content": "The Filer API Key making this request will expire in less than two weeks.",
          "errorLabel": "INCONSISTENT_TAG_VALUE"
        }
      ],
      "submissionProcessingStatus": "SUSPENDED"
    }
  ],
  "messages": [
    {
      "content": "The Filer API Key making this request will expire in less than two weeks."
    }
  ]
}