# Get Fern Writer Install Link GET https://fai.buildwithfern.com/scribe/slack/get-install Reference: https://buildwithfern.com/learn/docs/ai-features/ask-fern/api-reference/slack-scribe/get-fern-writer-install-link ## OpenAPI Specification ```yaml openapi: 3.1.1 info: title: Get Fern Writer Install Link version: endpoint_slackScribe.get_fern_writer_install_link 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 of the form `Bearer `, where token is your auth token. required: true schema: type: string responses: '200': description: Successful Response content: application/json: schema: description: Any type '422': description: Validation Error content: {} ```