List
List
This endpoint retrieves a list of Form 1099 returns that have been created, submitted, or transmitted in TaxBandits, filtered by submission or payer identifiers. For example, passing a BusinessId returns all returns created under that payer.
You can also filter results by status type (Federal Filing, State Filing, Online Access, or Postal Mailing) and retrieve returns with a specific status (e.g., Accepted, Rejected, Pending).s. (e.g., Accepted, Rejected, Pending).
POST form1099/list Request Body
| Field | Type | Description |
|---|---|---|
| TaxYear | String | Tax year for which the 1099 returns should be listed. |
| ReturnType | String | The type of return to be listed.Allowed values"ORIGINAL", "CORRECTION |
| FormTypes | Object[] | List of form types to filter the returns.Allowed values"FORM1099NEC", "FORM1099MISC", "FORM1099K", "FORM1099INT", "FORMW2G", "FORM5498SA" , "Form1099B","Form1099G","Form1099DA","Form1099S","Form1099PATR","Form1099SA","Form1099R","Form1099A","Form1099C","Form1099Q","Form1099LTC","Form1099DIV","Form1099OID" |
| Business | object | Business details used to identify the payer. |
| BusinessId | GUID | Unique Business ID generated by TaxBandits. If provided, you do not need to send the business details again. |
| PayerRef | String | Optional Your unique reference for the payer. Can be used instead of BusinessId. Size Range: 50 |
| BusinessNm | String | Legal name of the business. Size Range: ..75 |
| TINType | String | TIN type of the business.Allowed values"EIN", "SSN", "QI-EIN", "ITIN", "WP-EIN", "WT-EIN", "NQI-EIN" |
| PayerTIN | String | Last four digits of the business TIN. |
| Recipient | object | Recipient details used to identify the recipient. |
| RecipientId | GUID | Unique Recipient ID generated by TaxBandits. |
| PayeeRef | String | Optional Your unique reference for the recipient. Size Range: 50 |
| RecipientNm | String | Name of the recipient. Size Range: 75 |
| RecipientTINType | String | TIN type of the recipient.Allowed values"EIN", "SSN", "ATIN", "ITIN","QI-EIN", "WP-EIN", "WT-EIN", "NQI-EIN", "NA" |
| RecipientLast4TIN | String | Last four digits of the recipient's TIN. |
| SubmissionId | GUID | Unique ID assigned by TaxBandits to the submission. |
| Federal | object | Filters returns based on the federal filing status. |
| Status | Object[] | One or more federal return statuses to filter the results.Allowed values"CREATED", "TRANSMITTED", "SENT_TO_AGENCY", "ACCEPTED", "REJECTED", "ACCEPTED_WITH_ERRORS" |
| State | object | Filters returns based on the state filing status. |
| Status | Object[] | One or more state return statuses to filter the results.Allowed values"CREATED", "TRANSMITTED", "SENT_TO_AGENCY", "ACCEPTED", "REJECTED" |
| Distribution | object | Filters returns based on online access or postal distribution status. |
| OAStatus | Object[] | One or more online access statuses to filter the results.Allowed values"CREATED", "ORDER_RECEIVED", "EMAIL_SENT", "DOWNLOADED_FORM", "VIEWED_FORM" |
| PostalStatus | Object[] | One or more postal distribution statuses to filter the results.Allowed values"CREATED","ORDER_RECEIVED","POSTAL_INITIATED","HANDED_OVER_TO_USPS","MAILED","IN_TRANSIT","OUT_FOR_DELIVERY","ASSUMED_DELIVERED","RE_ROUTED","INTERNATIONAL_EXIT" |
| FromDate | String | Start date for listing returns (MM/DD/YYYY). |
| ToDate | String | End date for listing returns (MM/DD/YYYY). |
| Page | Number | Page number of the results to retrieve. |
| PageSize | Number | Number of records to return per page (maximum 100). |
| Errors | object[] | List of validation errors for state returns. |
| Id | String | Unique ID of the validation error. |
| Name | String | Name of the validation error. |
| Message | String | Description of the validation error. |
Response Body
| Field | Type | Description |
|---|---|---|
| Form1099Records | Object[] | List of 1099 return records. |
| TaxYear | String | Tax year of the listed returns. |
| FormType | String | Form type of the listed 1099 returns. |
| RecordId | GUID | Unique ID of the return record. |
| BusinessId | GUID | Unique ID of the business. |
| BusinessNm | String | Name of the business. |
| PayerRef | String | Your unique reference for the business. |
| RecipientId | GUID | Unique ID of the recipient. |
| PayeeRef | String | Your unique reference for the recipient. |
| RecipientNm | String | Name of the recipient. |
| FederalStatus | object | Federal filing status details for the return. |
| Status | String | Current status of the return. |
| Info | String | Additional information about the federal filing service. |
| StatusTs | String | Date and time when the federal status was updated. |
| StatesStatus | object | State filing status details for the return. |
| Status | String | Current state filing status. |
| Info | String | Additional information about the state filing service. |
| StatusTs | String | Date and time when the state status was updated. |
| Distribution | object | Distribution status details for postal or online access. |
| DistributionType | String | Distribution method selected for the return. |
| PostalStatus | object | Postal mailing status details. |
| PostalType | String | Postal mailing method selected for the return. |
| Status | String | Current postal mailing status. |
| Info | String | Additional information about the postal mailing service. |
| StatusTs | String | Date and time when the return was processed for postal mailing. |
| OnlineAccessStatus | Object | Online access status details. |
| String | Email address used for online access. | |
| Status | String | Current online access status. |
| Info | String | Additional information about the online access service. |
| StatusTs | String | Date and time when the return was processed for online access. |
| AttachmentURL | String | URL to download the PDF of any additional attachments. |
| CreatedTs | String | Date and time when the return was created. |
| LastUpdatedTs | String | Date and time when the return was last updated. |
| Page | Number | Page number containing the listed records. |
| PageSize | Number | Number of records returned per page. |
| Errors | object[] | Error details if validation errors. |
| Id | String | Unique ID of the validation error. |
| Name | String | Name of the validation error. |
| Message | String | Description of the validation error. |
Payload

Go Lang
Node.js
Python
.NET C#

Ruby
Java

cURL
| Sample | Description | Action |
|---|---|---|
| Sample 1 | List Form 1099 returns using payer, submission, federal status, state status, and distribution filters. |
Sample 1
{
"TaxYear": "2026",
"ReturnType": "ORIGINAL",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED"
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
}
| Response | Description | Action |
|---|---|---|
| 200 | Success Response - This is a sample response for successful API requests. | |
| 400 | Bad Request Response - You'll get the below response when your API requests contain any validation errors | |
| 404 | Not Found - You'll get the below response when your API requests contain any invalid reference ids. |
Response: 200
{
"Form1099Records": [
{
"TaxYear": "2026",
"ReturnType": "ORIGINAL",
"FormType": "FORM1099NEC",
"SubmissionId": "be2c5d52-43ba-4424-93e7-e116d377ebc4",
"RecordId": "9ce9bf04-87bd-4f7e-8bce-3f1626043d20",
"BusinessId": "ecc03506-40c1-4c59-a33e-380f9a82019b",
"BusinessNm": "Horizon LLC",
"PayerRef": null,
"RecipientId": "82db9b22-b8ad-4bce-8ba6-6828f0376be5",
"PayeeRef": null,
"RecipientNm": "Olivia M Harris",
"FederalStatus": {
"StatusCd": "FED_001",
"Status": "CREATED",
"StatusTs": "2026-08-18 02:03:41 -04:00",
"Info": "The return is created and is not transmitted yet",
"Errors": null
},
"StatesStatus": [
{
"StateCd": "AZ",
"StatusCd": "STATE_001",
"Status": "CREATED",
"StatusTs": "2026-08-18 02:03:42 -04:00",
"Info": "The return is created and is not been transmitted yet",
"Errors": null
}
],
"Distribution": {
"DistributionType": "POSTAL_AND_ONLINE",
"PostalStatus": {
"PostalType": "USPS_FIRST_CLASS",
"Code": "POSTAL_001",
"Status": "CREATED",
"StatusTs": "2026-08-18 02:03:42 -04:00",
"Info": ""
},
"OnlineAccessStatus": {
"Email": "olivia.harris@sample.com",
"Code": "ONLINE_001",
"Status": "CREATED",
"StatusTs": "2026-08-18 02:03:41 -04:00",
"Info": null
},
"AttachmentURL": "pdfs/f502ee15-25c8-41d0-83a6-f68794a8c9b4/0a000f01-d3d6-4188-aee2-36d9269fd172/1099/48723801/postalAttach_48723801.pdf"
},
"CreatedTs": "2026-08-18 02:03:41 -04:00",
"LastUpdatedTs": "2026-08-18 02:03:41 -04:00"
}
],
"Page": 1,
"PageSize": 100,
"TotalRecords": 1,
"TotalPages": 1,
"Errors": null
}
package main
import (
"fmt"
"io"
"net/http"
"strings"
)
func main() {
url := "<APIURL>/v2.0.0/form1099/list"
method := "POST"
payload := strings.NewReader(`{
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
}`)
client := &http.Client{}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "<ACCESS_TOKEN>")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
const axios = require('axios');
let data = JSON.stringify({
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED"
],
"PostalStatus": [
"CREATED"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: '<APIURL>/v2.0.0/form1099/list',
headers: {
'Content-Type': 'application/json',
'Authorization': '<ACCESS_TOKEN>'
},
data : data
};
axios.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
import http.client
import json
conn = http.client.HTTPSConnection("<APIURL>")
payload = json.dumps({
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": None,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": None
},
"Recipient": {
"RecipientId": None,
"PayeeRef": "Payee123",
"RecipientNm": None,
"RecipientTINType": "SSN",
"RecipientLast4TIN": None
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": None,
"ToDate": None,
"Page": 1,
"PageSize": 100
})
headers = {
'Content-Type': 'application/json',
'Authorization': '<ACCESS_TOKEN>'
}
conn.request("POST", "/v2.0.0/form1099/list", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Post, "<APIURL>/v2.0.0/form1099/list");
request.Headers.Add("Authorization", "<ACCESS_TOKEN>");
var content = new StringContent("{
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
}", null, "application/json");
request.Content = content;
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
require "uri"
require "json"
require "net/http"
url = URI("<APIURL>/v2.0.0/form1099/list")
http = Net::HTTP.new(url.host, url.port);
request = Net::HTTP::Post.new(url)
request["Content-Type"] = "application/json"
request["Authorization"] = "<ACCESS_TOKEN>"
request.body = JSON.dump({
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": "nil",
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": "nil"
},
"Recipient": {
"RecipientId": "nil",
"PayeeRef": "Payee123",
"RecipientNm": "nil",
"RecipientTINType": "SSN",
"RecipientLast4TIN": "nil"
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": "nil",
"ToDate": "nil",
"Page": 1,
"PageSize": 100
})
response = http.request(request)
puts response.read_body
OkHttpClient client = new OkHttpClient().newBuilder()
.build();
MediaType mediaType = MediaType.parse("application/json");
RequestBody body = RequestBody.create(mediaType, "{
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
}");
Request request = new Request.Builder()
.url("<APIURL>/v2.0.0/form1099/list")
.method("POST", body)
.addHeader("Content-Type", "application/json")
.addHeader("Authorization", "<ACCESS_TOKEN>")
.build();
Response response = client.newCall(request).execute();
curl --location '<APIURL>/v2.0.0/form1099/list' --header 'Content-Type: application/json' --header 'Authorization: <ACCESS_TOKEN>' --data '{
"TaxYear": "2026",
"FormTypes": [
"FORM1099NEC",
"FORM1099MISC"
],
"Business": {
"BusinessId": null,
"PayerRef": "Payer132",
"BusinessNm": "Steven LLC",
"TINType": "EIN",
"PayerTIN": null
},
"Recipient": {
"RecipientId": null,
"PayeeRef": "Payee123",
"RecipientNm": null,
"RecipientTINType": "SSN",
"RecipientLast4TIN": null
},
"SubmissionId": "f47ac10b-58cc-4372-a567-0e02b2c3d479",
"Federal": {
"Status": [
"CREATED",
"TRANSMITTED",
"SCHEDULED"
]
},
"State": {
"StateCd": [
"SC",
"MD"
],
"Status": [
"CREATED",
"SCHEDULED "
]
},
"Distribution": {
"OAStatus": [
"OPENED",
"VIEWED"
],
"PostalStatus": [
"SENT"
]
},
"FromDate": null,
"ToDate": null,
"Page": 1,
"PageSize": 100
}'