Skip to main content
GET
/
v1
/
filing
List filings
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.getpalm.com/v1/filing', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));

Authorizations

Authorization
string
header
required

Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx

Query Parameters

type
string

Filter by filing type

status
string

Filter by status. Accepts any partner-visible status (queued, ready_to_file, processing, filed, completed, canceled). Filtering by processing returns filings in any state that externalizes to processing on the DTO.

business_id
string

Filter by business ID

limit
string

Max items (default 10, max 100)

cursor
string

Pagination cursor

Response

Paginated list of filings