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

# Get API information



## OpenAPI

````yaml /openapi.yaml get /v1
openapi: 3.1.0
info:
  title: MyFundedPerps API (Beta)
  version: 1.0.0
  description: >-
    The developer API is in beta. Breaking changes may be introduced at any
    time. Programmatic access to MyFundedPerps paper-trading challenge accounts.
    API trades use the same real order books and simulated execution engine as
    the web trading interface. Every response carries an `X-Request-Id` header
    for support and log correlation.
  contact:
    url: https://myfundedperpetuals.com/support
servers:
  - url: https://developers.myfundedperpetuals.com
    description: Live
  - url: https://sandbox.myfundedperpetuals.com
    description: Sandbox (test keys and sandbox accounts only)
security:
  - bearerAuth: []
tags:
  - name: General
  - name: Authentication
  - name: Accounts
  - name: Markets
  - name: Positions
  - name: Orders
  - name: Fills
  - name: Strategy Orders
paths:
  /v1:
    get:
      tags:
        - General
      summary: Get API information
      operationId: getApiInformation
      responses:
        '200':
          description: API name, version, environment, and documentation URL.
          content:
            application/json:
              schema:
                type: object
                required:
                  - data
                properties:
                  data:
                    type: object
                    required:
                      - name
                      - version
                      - environment
                      - documentation
                    properties:
                      name:
                        type: string
                        example: MyFundedPerps API
                      version:
                        type: string
                        example: v1
                      environment:
                        type: string
                        enum:
                          - live
                          - test
                        description: >-
                          `live` on developers.myfundedperpetuals.com, `test` on
                          sandbox.myfundedperpetuals.com.
                        example: live
                      documentation:
                        type: string
                        format: uri
                        example: https://docs.myfundedperpetuals.com
      security: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: MyFundedPerps API key
      description: >-
        API key beginning with `fp_live_` (live keys, served at
        developers.myfundedperpetuals.com) or `fp_test_` (test keys, served at
        sandbox.myfundedperpetuals.com). A key presented on the other host is
        rejected with `401` and a message naming the correct host.

````