Skip to main content
POST
/
v1
/
filing
/
formation
/
llc
/
validate
Validate an LLC formation request
const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.getpalm.com/v1/filing/formation/llc/validate', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "valid": true,
  "errors": [
    {
      "source": "jsonschema",
      "code": "JSONSCHEMA_VALIDATION_FAILED",
      "path": "jurisdiction_registered_agent.agent_type",
      "message": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx

Response

200 - application/json

Validation result

valid
boolean
required

True when the payload passed every compliance check

errors
object[]
required

All compliance errors found, empty when valid