Structify slack API

The slack API from Structify — 1 operation(s) for slack.

Operations 1

POST /slack/events Handles Slack Events API webhooks for app mentions #

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/structify-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 email required.

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

OpenAPI Specification

structify-slack-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: team@structify.ai
    name: Structify Team
  description: Every enterprise's data team.
  license:
    name: Discuss directly with founders for license.
    url: https://structify.ai
  title: Structify account Slack API
  version: 0.1.0
servers:
- description: Production server
  url: https://api.structify.ai
- description: Local server
  url: http://localhost:8080
security:
- api_key: []
- session_token: []
tags:
- name: slack
paths:
  /slack/events:
    post:
      description: 'This endpoint receives events from Slack when users mention @structify.

        It handles URL verification challenges and app mention events.

        Requires proper authentication via StructifyUser - no fake users created.'
      operationId: slack_events
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SlackEventPayload'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlackApiResponse'
          description: Event processed successfully
      summary: Handles Slack Events API webhooks for app mentions
      tags:
      - slack
components:
  schemas:
    SlackFile:
      properties:
        filetype:
          type:
          - string
          - 'null'
        id:
          type: string
        mimetype:
          type:
          - string
          - 'null'
        name:
          type: string
        url_private:
          type:
          - string
          - 'null'
        url_private_download:
          type:
          - string
          - 'null'
      required:
      - id
      - name
      type: object
    SlackChallengeResponse:
      properties:
        challenge:
          type: string
      required:
      - challenge
      type: object
    SlackApiResponse:
      oneOf:
      - $ref: '#/components/schemas/SlackChallengeResponse'
      - $ref: '#/components/schemas/SlackEventResponse'
    SlackEventPayload:
      discriminator:
        propertyName: type
      oneOf:
      - properties:
          challenge:
            type: string
          token:
            type:
            - string
            - 'null'
          type:
            enum:
            - url_verification
            type: string
        required:
        - challenge
        - type
        type: object
      - properties:
          api_app_id:
            type:
            - string
            - 'null'
          authed_users:
            items:
              type: string
            type:
            - array
            - 'null'
          event:
            $ref: '#/components/schemas/SlackEvent'
          event_context:
            type:
            - string
            - 'null'
          event_id:
            type: string
          event_time:
            format: int64
            minimum: 0
            type:
            - integer
            - 'null'
          team_id:
            type: string
          type:
            enum:
            - event_callback
            type: string
        required:
        - team_id
        - event
        - event_id
        - type
        type: object
    SlackEvent:
      discriminator:
        propertyName: type
      oneOf:
      - properties:
          channel:
            type: string
          channel_type:
            type:
            - string
            - 'null'
          client_msg_id:
            type:
            - string
            - 'null'
          event_ts:
            type:
            - string
            - 'null'
          files:
            items:
              $ref: '#/components/schemas/SlackFile'
            type:
            - array
            - 'null'
          team:
            type:
            - string
            - 'null'
          text:
            type: string
          thread_ts:
            type:
            - string
            - 'null'
          ts:
            type: string
          type:
            enum:
            - app_mention
            type: string
          user:
            type: string
        required:
        - user
        - text
        - ts
        - channel
        - type
        type: object
    SlackEventResponse:
      properties:
        message:
          type:
          - string
          - 'null'
        ok:
          type: boolean
      required:
      - ok
      type: object
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http