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

# /sec/filings/form-d

> Get a SEC EDGAR Form D (exempt offering) filing by accession number or document URL

**Price:** 1 credit

**⚠️ Common errors:** 412: Form D filing not found for the given accession number or URL.



## OpenAPI

````yaml /openapi/finance-markets.json post /api/sec/filings/form-d
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/sec/filings/form-d:
    post:
      tags:
        - SEC
      summary: /sec/filings/form-d
      description: >-
        Get a SEC EDGAR Form D (exempt offering) filing by accession number or
        document URL


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Form D filing not found for the given
        accession number or URL.
      operationId: __api_sec_filings_form_d_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SECFormDPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SECFormDFiling'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    SECFormDPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        filing:
          type: string
          minLength: 1
      type: object
      required:
        - filing
    SECFormDFiling:
      properties:
        '@type':
          type: string
          default: SECFormDFiling
        accession_number:
          type: string
        document_url:
          type: string
        form_type:
          type: string
        is_amendment:
          anyOf:
            - type: boolean
            - type: 'null'
        cik:
          type: string
        entity_name:
          type: string
        issuer_entity_type:
          anyOf:
            - type: string
            - type: 'null'
        jurisdiction_of_inc:
          anyOf:
            - type: string
            - type: 'null'
        year_of_inc:
          anyOf:
            - type: integer
            - type: 'null'
        issuer_street:
          anyOf:
            - type: string
            - type: 'null'
        issuer_city:
          anyOf:
            - type: string
            - type: 'null'
        issuer_state:
          anyOf:
            - type: string
            - type: 'null'
        issuer_zip:
          anyOf:
            - type: string
            - type: 'null'
        issuer_phone:
          anyOf:
            - type: string
            - type: 'null'
        industry_group_type:
          anyOf:
            - type: string
            - type: 'null'
        investment_fund_type:
          anyOf:
            - type: string
            - type: 'null'
        is_40_act:
          anyOf:
            - type: boolean
            - type: 'null'
        revenue_range:
          anyOf:
            - type: string
            - type: 'null'
        net_asset_value_range:
          anyOf:
            - type: string
            - type: 'null'
        federal_exemptions:
          items:
            type: string
          type: array
          default: []
        securities_offered:
          items:
            type: string
          type: array
          default: []
        minimum_investment_accepted:
          anyOf:
            - type: number
            - type: 'null'
        total_offering_amount:
          anyOf:
            - type: number
            - type: 'null'
        is_offering_amount_indefinite:
          type: boolean
          default: false
        total_amount_sold:
          anyOf:
            - type: number
            - type: 'null'
        total_remaining:
          anyOf:
            - type: number
            - type: 'null'
        date_of_first_sale:
          anyOf:
            - type: string
            - type: 'null'
        is_first_sale_yet_to_occur:
          type: boolean
          default: false
        has_non_accredited_investors:
          anyOf:
            - type: boolean
            - type: 'null'
        total_number_already_invested:
          anyOf:
            - type: integer
            - type: 'null'
        related_persons:
          items:
            $ref: '#/components/schemas/SECFormDRelatedPerson'
          type: array
          default: []
      type: object
      required:
        - accession_number
        - document_url
        - form_type
        - cik
        - entity_name
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    SECFormDRelatedPerson:
      properties:
        '@type':
          type: string
          default: SECFormDRelatedPerson
        name:
          type: string
        relationships:
          items:
            type: string
          type: array
          default: []
        relationship_note:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````