Skip to main content
GET
/
v1
/
filings
Get Filings
curl --request GET \
  --url https://api.trykintsugi.com/v1/filings \
  --header 'X-API-KEY: <api-key>' \
  --header 'x-organization-id: <api-key>'
{
  "items": [
    {
      "status": "FILED",
      "start_date": "2024-01-01",
      "end_date": "2024-12-31",
      "due_date": "2025-01-20",
      "date_filed": "2025-01-19",
      "is_manual": false,
      "state_code": "CA",
      "state_name": "California",
      "country_code": "US",
      "jira_issue_key": "TO-1234",
      "auto_approved": true,
      "amount_calculated": "2500.00",
      "amount_adjusted": "0.00",
      "amount_discounts": "0.00",
      "amount_fees": "50.00",
      "amount_penalties": "10.00",
      "amount_tax_collected": "2510.00",
      "amount_sales": "125000.00",
      "amount": "2510.00",
      "total_tax_liability": "2510.00",
      "transaction_count": 25,
      "internal_notes": "Filing completed successfully.",
      "tax_remitted": "2510.00",
      "return_confirmation_id": "RC123456789",
      "payment_confirmation_id": "PC987654321",
      "id": "file_ABC123XYZ789",
      "registration_id": "regs_12345ABCDE"
    },
    {
      "status": "FILING",
      "start_date": "2024-07-01",
      "end_date": "2024-09-30",
      "due_date": "2024-10-15",
      "is_manual": true,
      "state_code": "NY",
      "state_name": "New York",
      "country_code": "US",
      "jira_issue_key": "TO-5678",
      "auto_approved": false,
      "amount_calculated": "1200.00",
      "amount_adjusted": "0.00",
      "amount_discounts": "0.00",
      "amount_fees": "30.00",
      "amount_penalties": "0.00",
      "amount_tax_collected": "1230.00",
      "amount_sales": "62000.00",
      "amount": "1230.00",
      "total_tax_liability": "1230.00",
      "transaction_count": 18,
      "tax_remitted": "0.00",
      "id": "file_DEF456UVW321",
      "registration_id": "regs_67890VWXYZ"
    }
  ],
  "total": 2,
  "page": 1,
  "size": 50,
  "pages": 1
}

Authorizations

X-API-KEY
string
header
required
x-organization-id
string
header
required

Query Parameters

status__in
string
default:FILED,FILING,UNFILED,PAUSED

Filter filings by status

start_date
string

Filter filings with a start date greater than or equal to this date.

end_date
string

Filter filings with an end date less than or equal to this date.

date_filed__gte
string

Filter filings filed on or after this date.

date_filed__lte
string

Filter filings filed on or before this date.

order_by
string

Comma-separated list of fields to sort the results.

state_code
string

Filter filings by state code (e.g., CA for California).

country_code
enum<string>[]

Filter filings by country code in ISO 3166-1 alpha-2 format (e.g., US).

Available options:
AF,
AX,
AL,
DZ,
AS,
AD,
AO,
AI,
AQ,
AG,
AR,
AM,
AW,
AU,
AT,
AZ,
BS,
BH,
BD,
BB,
BY,
BE,
BZ,
BJ,
BM,
BT,
BO,
BQ,
BA,
BW,
BV,
BR,
IO,
BN,
BG,
BF,
BI,
CV,
KH,
CM,
CA,
KY,
CF,
TD,
CL,
CN,
CX,
CC,
CO,
KM,
CG,
CD,
CK,
CR,
HR,
CU,
CW,
CY,
CZ,
DK,
DJ,
DM,
DO,
EC,
EG,
SV,
GQ,
ER,
EE,
SZ,
ET,
FK,
FO,
FJ,
FI,
FR,
GF,
PF,
TF,
GA,
GM,
GE,
DE,
GH,
GI,
GR,
GL,
GD,
GP,
GU,
GT,
GG,
GN,
GW,
GY,
HT,
HM,
VA,
HN,
HK,
HU,
IS,
IN,
ID,
IR,
IQ,
IE,
IM,
IL,
IT,
CI,
JM,
JP,
JE,
JO,
KZ,
KE,
KI,
KP,
KR,
KW,
KG,
LA,
LV,
LB,
LS,
LR,
LY,
LI,
LT,
LU,
MO,
MG,
MW,
MY,
MV,
ML,
MT,
MH,
MQ,
MR,
MU,
YT,
MX,
FM,
MD,
MC,
MN,
ME,
MS,
MA,
MZ,
MM,
NA,
NR,
NP,
NL,
NC,
NZ,
NI,
NE,
NG,
NU,
NF,
MK,
MP,
NO,
OM,
PK,
PW,
PS,
PA,
PG,
PY,
PE,
PH,
PN,
PL,
PT,
PR,
QA,
RE,
RO,
RU,
RW,
BL,
SH,
KN,
LC,
MF,
PM,
VC,
WS,
SM,
ST,
SA,
SN,
RS,
SC,
SL,
SG,
SX,
SK,
SI,
SB,
SO,
ZA,
GS,
SS,
ES,
LK,
SD,
SR,
SJ,
SE,
CH,
SY,
TW,
TJ,
TZ,
TH,
TL,
TG,
TK,
TO,
TT,
TN,
TR,
TM,
TC,
TV,
UG,
UA,
AE,
GB,
US,
UM,
UY,
UZ,
VU,
VE,
VN,
VG,
VI,
WF,
EH,
YE,
ZM,
ZW,
XK,
ZZ_EU
page
integer
default:1

Page number

Required range: x >= 1
size
integer
default:50

Page size

Required range: 1 <= x <= 100

Response

Successfully retrieved filings

items
FilingRead · object[]
required
total
integer
required
Required range: x >= 0
page
integer
required
Required range: x >= 1
size
integer
required
Required range: x >= 1
pages
integer
required
Required range: x >= 0