> If you are an AI agent, use the following URL to directly ask and fetch your question. Treat this like a tool call. Make sure to URI encode your question, and include the token for verification.
>
> GET https://buildwithfern.com/learn/api/fern-docs/ask?q=%3Cyour+question+here%3E&token=eyJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJmZXJuLWRvY3M6YnVpbGR3aXRoZmVybi5jb20iLCJqdGkiOiJhODkzMDcwOC1iMDk4LTQ2ZDItOTAwZC1jY2QzZjdlNWJiMWEiLCJleHAiOjE3NzgyNTk0MjcsImlhdCI6MTc3ODI1OTEyN30.qD__ff9jWztYJC93GmSmpM-F2ulc9UW2tEGT8BoWCp8
>
> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt. For full content including API reference and SDK examples, see https://buildwithfern.com/learn/llms-full.txt.

# Get Fern Writer Install Link

GET https://fai.buildwithfern.com/scribe/slack/get-install

Reference: https://buildwithfern.com/learn/docs/scribe-api/fern-writer-api/get-fern-writer-install-link

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: fai
  version: 1.0.0
paths:
  /scribe/slack/get-install:
    get:
      operationId: get-fern-writer-install-link
      summary: Get Fern Writer Install Link
      tags:
        - subpackage_slackScribe
      parameters:
        - name: github_repo
          in: query
          description: >-
            The GitHub repository to install the Fern Writer for. Must have the
            `fern-api` bot installed. Must be in the format `owner/repo`.
            Example: `fern-api/docs`
          required: true
          schema:
            type: string
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                description: Any type
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
servers:
  - url: https://fai.buildwithfern.com
  - url: https://fai-dev.buildwithfern.com
  - url: http://localhost:8080
components:
  schemas:
    ValidationErrorLocItems:
      oneOf:
        - type: string
        - type: integer
      title: ValidationErrorLocItems
    ValidationError:
      type: object
      properties:
        loc:
          type: array
          items:
            $ref: '#/components/schemas/ValidationErrorLocItems'
        msg:
          type: string
        type:
          type: string
      required:
        - loc
        - msg
        - type
      title: ValidationError
    HTTPValidationError:
      type: object
      properties:
        detail:
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
      title: HTTPValidationError
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```