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

# Get org settings

> Returns org-level settings: the default tap redirect URL and your organization's network configuration (read-only, configured by Endstate).



## OpenAPI

````yaml /openapi.json get /v1/settings
openapi: 3.1.0
info:
  title: Endstate API
  version: v1
  description: Endstate developer API for chip verification and ownership workflows.
servers:
  - url: https://api2.endstate.io
    description: Production
security: []
paths:
  /v1/settings:
    get:
      tags:
        - settings
      summary: Get org settings
      description: >-
        Returns org-level settings: the default tap redirect URL and your
        organization's network configuration (read-only, configured by
        Endstate).
      responses:
        '200':
          description: The org settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SettingsResponse'
              example:
                default_redirect_url: https://brand.example
                default_chain_id: 84532
                allowed_chain_ids:
                  - 84532
      security:
        - ApiKeyBearer: []
components:
  schemas:
    SettingsResponse:
      type: object
      properties:
        default_redirect_url:
          type:
            - string
            - 'null'
          format: uri
          description: >-
            Org-wide default tap redirect URL, used only when no unit, product,
            or collection redirect applies.
          example: https://brand.example
        default_chain_id:
          type:
            - integer
            - 'null'
          description: >-
            Identifier of your organization's default network — the network
            collections are created on when `chain_id` is omitted. `null` when
            no default network is configured for your organization. Read-only;
            configured by Endstate.
          example: 84532
        allowed_chain_ids:
          type: array
          items:
            type: integer
          description: >-
            Network identifiers enabled for your organization. An explicit
            `chain_id` on collection create must be one of these values.
            Read-only; configured by Endstate.
          example:
            - 84532
      required:
        - default_redirect_url
        - default_chain_id
        - allowed_chain_ids
  securitySchemes:
    ApiKeyBearer:
      type: http
      scheme: bearer
      bearerFormat: end_sk
      description: >-
        Use `Authorization: Bearer end_sk_*` for partner API keys (e.g.
        `end_sk_AbCd_example_api_key`).

````