Amika Slack API

The Slack API from Amika — 2 operation(s) for slack.

Operations 5

GET /slack/settings Read the org's Slack settings
PUT /slack/settings Upsert the org's Slack settings
GET /slack/channel-settings List per-channel Slack settings and recently seen channels
PUT /slack/channel-settings Upsert per-channel Slack settings
DELETE /slack/channel-settings Delete per-channel Slack settings

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/amika-slack-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

amika-slack-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Amika API — v0beta1 API keys Slack API
  version: 0beta1
servers:
- url: https://app.amika.dev/api/v0beta1
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Slack
paths:
  /slack/settings:
    get:
      tags:
      - Slack
      summary: Read the org's Slack settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      responses:
        '200':
          description: Slack settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackOrgSettings'
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '404':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
    put:
      tags:
      - Slack
      summary: Upsert the org's Slack settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SlackOrgSettingsUpsert'
      responses:
        '200':
          description: Updated settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackOrgSettings'
        '400':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
  /slack/channel-settings:
    get:
      tags:
      - Slack
      summary: List per-channel Slack settings and recently seen channels
      security:
      - bearerAuth: []
      - cookieAuth: []
      responses:
        '200':
          description: Channel settings and the list of channels the bot has been mentioned in.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackChannelSettingsList'
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
    put:
      tags:
      - Slack
      summary: Upsert per-channel Slack settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SlackChannelSettingsUpsert'
      responses:
        '200':
          description: Updated channel settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackChannelSettings'
        '400':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
    delete:
      tags:
      - Slack
      summary: Delete per-channel Slack settings
      security:
      - bearerAuth: []
      - cookieAuth: []
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SlackChannelSettingsDelete'
      responses:
        '204':
          description: Deleted (or no row existed).
        '400':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '401':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
        '403':
          description: Error
          headers:
            x-trace-id:
              description: Per-request trace id for correlating responses with logs.
              schema:
                type: string
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    enum:
                    - error
                  error_code:
                    type: string
                  message:
                    type: string
                  details:
                    type: array
                    items:
                      nullable: true
                  trace_id:
                    type: string
                required:
                - type
                - error_code
                - message
components:
  schemas:
    SlackChannelSettingsUpsert:
      type: object
      properties:
        slack_team_id:
          type: string
          minLength: 1
        slack_channel_id:
          type: string
          minLength: 1
        repository_id:
          type: string
          nullable: true
          minLength: 1
        agent_name:
          type: string
          nullable: true
          enum:
          - claude
          - codex
          - null
        system_prompt:
          type: string
          nullable: true
      required:
      - slack_team_id
      - slack_channel_id
    SlackChannelSettingsDelete:
      type: object
      properties:
        slack_team_id:
          type: string
          minLength: 1
        slack_channel_id:
          type: string
          minLength: 1
      required:
      - slack_team_id
      - slack_channel_id
    SlackSeenChannel:
      type: object
      properties:
        slack_team_id:
          type: string
        slack_team_name:
          type: string
          nullable: true
        slack_channel_id:
          type: string
        slack_channel_name:
          type: string
          nullable: true
        last_seen_at:
          anyOf:
          - type: string
          - type: string
            format: date-time
      required:
      - slack_team_id
      - slack_team_name
      - slack_channel_id
      - slack_channel_name
      - last_seen_at
    SlackOrgSettings:
      type: object
      properties:
        org_id:
          type: string
        repository_id:
          type: string
          nullable: true
        agent_name:
          type: string
          nullable: true
          enum:
          - claude
          - codex
          - null
        system_prompt:
          type: string
          nullable: true
        created_at:
          anyOf:
          - type: string
          - type: string
            format: date-time
        updated_at:
          anyOf:
          - type: string
          - type: string
            format: date-time
      required:
      - org_id
      - repository_id
      - agent_name
      - system_prompt
      - created_at
      - updated_at
    SlackChannelSettings:
      type: object
      properties:
        org_id:
          type: string
        slack_team_id:
          type: string
        slack_channel_id:
          type: string
        repository_id:
          type: string
          nullable: true
        agent_name:
          type: string
          nullable: true
          enum:
          - claude
          - codex
          - null
        system_prompt:
          type: string
          nullable: true
        created_at:
          anyOf:
          - type: string
          - type: string
            format: date-time
        updated_at:
          anyOf:
          - type: string
          - type: string
            format: date-time
      required:
      - org_id
      - slack_team_id
      - slack_channel_id
      - repository_id
      - agent_name
      - system_prompt
      - created_at
      - updated_at
    SlackOrgSettingsUpsert:
      type: object
      properties:
        repository_id:
          type: string
          nullable: true
          minLength: 1
        agent_name:
          type: string
          nullable: true
          enum:
          - claude
          - codex
          - null
        system_prompt:
          type: string
          nullable: true
      required:
      - repository_id
      - agent_name
      - system_prompt
    SlackChannelSettingsList:
      type: object
      properties:
        settings:
          type: array
          items:
            $ref: '#/components/schemas/SlackChannelSettings'
        seen_channels:
          type: array
          items:
            $ref: '#/components/schemas/SlackSeenChannel'
      required:
      - settings
      - seen_channels