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

# Get custom data configuration

Returns the organization's custom data panel settings.


## OpenAPI

````yaml https://api.getfernand.com/openapi.json get /organization/custom-data
openapi: 3.0.3
info:
  title: Fernand API Documentation
  version: '3.0'
  description: This is the documentation for the [Fernand](https://getfernand.com) API.
  termsOfService: https://getfernand.com/terms
  contact:
    name: Fernand Support
    url: https://getfernand.com
    email: support@getfernand.com
  x-logo:
    url: https://app.getfernand.com/images/favicon/icon_128.png
servers:
  - url: https://api.getfernand.com
    description: ''
    x-last-modified: 1764750693905
security:
  - apiKeyHeader: []
externalDocs:
  description: You can access our documentation online by visiting https://api.fernand.help
  url: https://api.fernand.help
paths:
  /organization/custom-data:
    get:
      tags:
        - Custom Data
      summary: Get custom data configuration
      description: Returns the organization's custom data panel settings.
      operationId: getCustomDataConfiguration
      responses:
        '200':
          description: Custom data configuration retrieved successfully.
          content:
            application/json:
              schema:
                type: object
                properties:
                  endpoint:
                    type: string
                    format: uri
                    description: API endpoint URL to fetch custom data.
                    example: https://api.piedpiper.com/customer-data
                  headers:
                    type: object
                    additionalProperties:
                      type: string
                    description: Custom HTTP headers for API requests.
                    example:
                      Authorization: Bearer token123
                      X-API-Key: key456
                  template:
                    type: string
                    description: Jinja2 template for rendering custom data.
                    example: <div>{{ customer.name }}</div>
                  is_enabled:
                    type: boolean
                    description: Whether custom data panel is enabled.
                    example: true
                  test_email:
                    type: string
                    format: email
                    description: Test email address for template validation.
                    example: test@customer.com
components:
  securitySchemes:
    apiKeyHeader:
      type: apiKey
      description: >-
        Authenticate your account by including your secret key in API requests.

        You can manage your API keys in the
        [Dashboard](https://app.getfernand.com/).


        Authentication to the API is performed by using the HTTP Header
        X-API-Key.
      name: X-API-Key
      in: header
      x-last-modified: 1764750344730

````