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

fetch('https://api.getpalm.com/v1/filing/formation/fee', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "type": "formation",
  "entity_type": "llc",
  "jurisdiction": "US-NC",
  "fee": {
    "base": {
      "amount": 125,
      "currency": "USD"
    },
    "ach": {
      "amount": 2,
      "currency": "USD"
    },
    "credit_card": {
      "amount": 3,
      "currency": "USD"
    },
    "dynamic": {
      "amount": 0,
      "currency": "USD"
    },
    "late": {
      "amount": 0,
      "currency": "USD"
    },
    "items": [
      {
        "componentType": "base",
        "name": "filing",
        "amount": 125,
        "currency": "USD"
      },
      {
        "componentType": "ach",
        "name": "default",
        "amount": 2,
        "currency": "USD"
      },
      {
        "componentType": "credit_card",
        "name": "default",
        "amount": 3,
        "currency": "USD"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx

Query Parameters

entity_type
enum<string>
required

Entity type

Available options:
llc,
corporation
jurisdiction
string
required

Jurisdiction (e.g., US-NC)

expedited_tier
string

Expedited processing tier (e.g., 24_hour, same_day, 2_hour, 1_hour). Omit for standard processing.

authorized_shares
number

Number of authorized shares (required by DE/MA/MI/VA corporations)

par_value
string

Par value per share (required by DE corporation)

par_value_type
string

Par value type, e.g., "with_par_value" or "no_par_value" (required by DE corporation)

authorized_capital
number

Authorized capital (required by DC/MO corporations)

Response

Fee estimate