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

# Bulk create accounts

> Creates or resolves up to 100 account records in one request.



## OpenAPI

````yaml post /v1/accounts/bulk
openapi: 3.1.0
info:
  title: Octolane Public API
  version: 1.0.0
  description: >-
    OpenAPI specification for Octolane public APIs. These endpoints let external
    systems read CRM data and create or update accounts, contacts,
    opportunities, notes, and activities through the public API gateway.
  contact:
    name: Octolane
    url: https://octolane.com
servers:
  - url: https://api.octolane.com
    description: Public API gateway
security:
  - ApiKeyAuth: []
tags:
  - name: CRM
    description: >-
      Public endpoints for creating, bulk creating, listing, searching, and
      updating CRM data.
paths:
  /v1/accounts/bulk:
    post:
      tags:
        - CRM
      summary: Bulk create accounts
      description: Creates or resolves up to 100 account records in one request.
      operationId: bulkCreateAccountsV1
      requestBody:
        required: true
        description: Array of account payloads. Maximum 100 items.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AccountBulkInput'
      responses:
        '200':
          description: Accounts were created or resolved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
        '201':
          description: Accounts were created or resolved.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResponse'
        '400':
          description: The request failed validation.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: >-
            The API key is missing, invalid, or not allowed to access this
            route.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: The route rate limit was exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    AccountBulkInput:
      type: array
      minItems: 1
      maxItems: 100
      items:
        $ref: '#/components/schemas/AccountInput'
    ApiResponse:
      type: object
      properties:
        success:
          type: boolean
          example: true
        message:
          type: string
        data:
          description: Endpoint-specific response payload.
      additionalProperties: true
    ErrorResponse:
      type: object
      properties:
        success:
          type: boolean
          example: false
        message:
          type: string
          example: Validation failed
        statusCode:
          type: integer
          example: 400
      additionalProperties: true
    AccountInput:
      type: object
      required:
        - domain
      properties:
        domain:
          type: string
          description: Company domain.
          example: acme.com
        name:
          type:
            - string
            - 'null'
          example: Acme
        industry:
          type:
            - string
            - 'null'
        logo:
          type:
            - string
            - 'null'
        linkedin:
          type:
            - string
            - 'null'
        twitter:
          type:
            - string
            - 'null'
        twitter_followers:
          type:
            - number
            - 'null'
        description:
          type:
            - string
            - 'null'
        primary_location:
          type:
            - string
            - 'null'
        founded:
          type:
            - number
            - 'null'
          minimum: 1000
          maximum: 9999
        estimated_revenue:
          type:
            - number
            - 'null'
        total_fund_raised:
          type:
            - number
            - 'null'
        employee_range:
          type:
            - string
            - 'null'
        type:
          type:
            - string
            - 'null'
        tags:
          oneOf:
            - type: array
              items:
                type: string
            - type: string
            - type: 'null'
        first_email_interaction:
          $ref: '#/components/schemas/PayloadTimestamp'
        last_email_interaction:
          $ref: '#/components/schemas/PayloadTimestamp'
        first_meeting_interaction:
          $ref: '#/components/schemas/PayloadTimestamp'
        last_meeting_interaction:
          $ref: '#/components/schemas/PayloadTimestamp'
        last_interaction:
          $ref: '#/components/schemas/PayloadTimestamp'
        next_meeting:
          $ref: '#/components/schemas/PayloadTimestamp'
      additionalProperties: true
    PayloadTimestamp:
      oneOf:
        - type: string
          format: date-time
        - type: number
          description: Unix seconds or milliseconds.
        - type: 'null'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Public API key for the Octolane organization.

````