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

# Create

> Create a new static backend




## OpenAPI

````yaml https://raw.githubusercontent.com/ngrok/ngrok-openapi/refs/heads/main/ngrok.yaml post /backends/static
openapi: 3.0.0
info:
  title: ngrok OpenAPI
  version: 1.0.0
servers:
  - url: https://api.ngrok.com
security:
  - authentication: []
paths:
  /backends/static:
    post:
      tags:
        - StaticBackends
      summary: Create
      description: |
        Create a new static backend
      operationId: StaticBackendsCreate
      parameters:
        - $ref: '#/components/parameters/ngrokVersion'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StaticBackendCreate'
      responses:
        '201':
          description: |
            Create a new static backend
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StaticBackend'
components:
  parameters:
    ngrokVersion:
      name: ngrok-version
      in: header
      required: true
      schema:
        type: integer
        default: 2
  schemas:
    StaticBackendCreate:
      type: object
      properties:
        description:
          description: |
            human-readable description of this backend. Optional
          type: string
        metadata:
          description: >
            arbitrary user-defined machine-readable data of this backend.
            Optional
          type: string
        address:
          description: |
            the address to forward to
          type: string
        tls:
          $ref: '#/components/schemas/StaticBackendTLS'
          description: |
            tls configuration to use
    StaticBackend:
      type: object
      properties:
        id:
          description: |
            unique identifier for this static backend
          type: string
        uri:
          description: |
            URI of the StaticBackend API resource
          type: string
        created_at:
          description: |
            timestamp when the backend was created, RFC 3339 format
          type: string
        description:
          description: |
            human-readable description of this backend. Optional
          type: string
        metadata:
          description: >
            arbitrary user-defined machine-readable data of this backend.
            Optional
          type: string
        address:
          description: |
            the address to forward to
          type: string
        tls:
          $ref: '#/components/schemas/StaticBackendTLS'
          description: |
            tls configuration to use
    StaticBackendTLS:
      type: object
      properties:
        enabled:
          description: |
            if TLS is checked
          type: boolean
  securitySchemes:
    authentication:
      type: http
      scheme: bearer

````