> ## Documentation Index
> Fetch the complete documentation index at: https://docs.getpalm.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Validate an LLC formation request

> > **⚠️ Early access** — This endpoint is in preview and may change in backwards-incompatible ways before it is marked stable. Avoid depending on it in production, and [reach out](mailto:support@getpalm.com) before building on it.

Check an LLC formation payload against state compliance rules without creating a filing or business record. Returns every compliance error in one pass, so you can pre-flight a submission.

Accepts a partial or complete payload, including the same jurisdiction-specific fields as the create endpoint (extra top-level properties, plus `jurisdiction_registered_agent` for state-specific registered-agent fields). The [formation requirements endpoint](/api-reference/v1/filing/get-formation-requirements) lists what a given state expects.

This checks state compliance rules only. Some field-format checks run on the create endpoint, so a payload that passes here can still be rejected when you submit it.



## OpenAPI

````yaml /api-reference/v1/openapi.json post /v1/filing/formation/llc/validate
openapi: 3.0.0
info:
  title: Palm Partner API
  description: >-
    The Palm API is identity verification and compliance infrastructure for US
    businesses: onboard businesses, verify businesses and people (KYB/KYC)
    against authoritative sources, monitor them for changes in real time, and
    act on their behalf through filings, formation, and registered agent
    services.
  version: '1.0'
  contact:
    name: Palm Support
    url: https://getpalm.com
    email: support@getpalm.com
  termsOfService: https://getpalm.com/terms
  license:
    name: Proprietary
    url: https://getpalm.com/license
servers:
  - url: https://api.getpalm.com
    description: Production
security: []
tags:
  - name: Registry
    description: Search business registries
  - name: Business
    description: Manage the businesses in your portfolio
  - name: User
    description: Manage the people in your portfolio
  - name: Verification
    description: Identity and business verification
  - name: Monitor
    description: Continuous monitoring of businesses
paths:
  /v1/filing/formation/llc/validate:
    post:
      tags:
        - Filing
      summary: Validate an LLC formation request
      description: >-
        > **⚠️ Early access** — This endpoint is in preview and may change in
        backwards-incompatible ways before it is marked stable. Avoid depending
        on it in production, and [reach out](mailto:support@getpalm.com) before
        building on it.


        Check an LLC formation payload against state compliance rules without
        creating a filing or business record. Returns every compliance error in
        one pass, so you can pre-flight a submission.


        Accepts a partial or complete payload, including the same
        jurisdiction-specific fields as the create endpoint (extra top-level
        properties, plus `jurisdiction_registered_agent` for state-specific
        registered-agent fields). The [formation requirements
        endpoint](/api-reference/v1/filing/get-formation-requirements) lists
        what a given state expects.


        This checks state compliance rules only. Some field-format checks run on
        the create endpoint, so a payload that passes here can still be rejected
        when you submit it.
      operationId: validateLlcFormation
      parameters: []
      responses:
        '200':
          description: Validation result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ValidationResult'
      security:
        - ApiKey: []
components:
  schemas:
    ValidationResult:
      type: object
      properties:
        valid:
          type: boolean
          description: True when the payload passed every compliance check
        errors:
          description: All compliance errors found, empty when valid
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      required:
        - valid
        - errors
    ValidationError:
      type: object
      properties:
        source:
          type: string
          description: Error origin
          example: jsonschema
        code:
          type: string
          description: Machine-readable error code
          example: JSONSCHEMA_VALIDATION_FAILED
        path:
          type: string
          description: Dotted path into the request body
          example: jurisdiction_registered_agent.agent_type
        message:
          type: string
          description: Human-readable message
      required:
        - source
        - code
        - path
        - message
  securitySchemes:
    ApiKey:
      scheme: bearer
      bearerFormat: opaque
      type: http
      description: 'Enter your API key in the format: sk_test_xxxxx or sk_live_xxxxx'

````