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

# Get Settings & Tools

> Returns the posting rules, maximum content length, settings schema, and available provider tools for a connected channel. Use this to discover which tools can be executed with the trigger endpoint.

The `tools` array in the response lists the helper tools this channel offers, each with
the `methodName` to pass to [Trigger a Tool](/public-api/integrations/trigger) and its
parameter schema. To see what every network offers without connecting one first, read
[Provider Tools](/public-api/integrations/provider-tools).


## OpenAPI

````yaml GET /integration-settings/{id}
openapi: 3.1.0
info:
  title: PostQueen Public API
  description: >-
    API for managing social media posts, integrations, and media uploads in
    PostQueen.


    ## Authentication


    All endpoints require an API key passed in the `Authorization` header:


    ```

    Authorization: your-api-key

    ```


    Get your API key from PostQueen Settings.


    ## Rate Limits


    The create-post endpoint is capped per organization per hour. With
    `API_LIMIT` unset the ceiling is **90 requests per hour**; the shipped
    Compose files and PostQueen Cloud both set it to **30**. No other endpoint
    is throttled.


    ## Terminology


    The UI uses `channel`, but the API uses `integration`. They refer to the
    same thing.


    ## Supported Platforms (34)


    **Social Platforms:** X (Twitter), LinkedIn, LinkedIn Page, Facebook,
    Instagram, Instagram Standalone, Threads, Bluesky, Mastodon, Warpcast
    (Farcaster), Nostr, VK


    **Video Platforms:** YouTube, TikTok


    **Community Platforms:** Reddit, Lemmy, Discord, Slack, Telegram, Kick,
    Twitch


    **Design Platforms:** Pinterest, Dribbble


    **Blogging Platforms:** Medium, Dev.to, Hashnode, WordPress, Moltbook


    **Business:** Google My Business (GMB), Listmonk (newsletters), Whop, Skool
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.postqueen.ai/public/v1
    description: PostQueen Cloud
  - url: https://{host}/api/public/v1
    description: Self-hosted
    variables:
      host:
        default: localhost:4007
        description: Your PostQueen instance domain
security:
  - ApiKeyAuth: []
tags:
  - name: Integrations
    description: Manage connected social media channels
  - name: Posts
    description: Create, list, and delete posts
  - name: Uploads
    description: Upload media files
  - name: Notifications
    description: View organization notifications
  - name: Analytics
    description: View analytics for integrations and posts
  - name: Video Generation
    description: Generate videos with AI
  - name: OAuth
    description: Authorize third-party apps and exchange codes for access tokens
paths:
  /integration-settings/{id}:
    get:
      tags:
        - Integrations
      summary: Get integration settings and tools
      description: >-
        Returns the posting rules, maximum content length, settings schema, and
        available provider tools for a connected channel. Use this to discover
        which tools can be executed with the trigger endpoint.
      operationId: getIntegrationSettings
      parameters:
        - name: id
          in: path
          required: true
          description: The integration ID
          schema:
            type: string
      responses:
        '200':
          description: Settings and tools for the integration
          content:
            application/json:
              schema:
                type: object
                properties:
                  output:
                    type: object
                    properties:
                      rules:
                        type: string
                        description: Platform-specific posting rules
                      maxLength:
                        type: number
                        description: Maximum content length
                      settings:
                        description: >-
                          JSON schema of the provider settings, or a string when
                          no settings are required
                      tools:
                        type: array
                        description: >-
                          Provider tools that can be executed via the trigger
                          endpoint
                        items:
                          type: object
                          properties:
                            methodName:
                              type: string
                            description:
                              type: string
                            dataSchema:
                              type: array
                              items:
                                type: object
              example:
                output:
                  rules: >-
                    Instagram should have at least one attachment, if it's a
                    story, it can have only one picture
                  maxLength: 2200
                  settings:
                    type: object
                  tools:
                    - methodName: audioSearch
                      description: >-
                        Search audio (music or original sounds) to attach to a
                        Reel via the "audio" setting, an empty query returns
                        trending audio
                      dataSchema:
                        - key: q
                          type: string
                          description: Search query, leave empty for trending audio
                        - key: type
                          type: string
                          description: >-
                            Either "music" or "original_sound", defaults to
                            "music"
        '404':
          description: Integration not found
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: Your PostQueen API key

````