Structify chat_templates API

The chat_templates API from Structify — 2 operation(s) for chat_templates.

Operations 2

GET /chat/templates List active chat templates for the /chat page #
GET /chat/templates/{template_id} #

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-chat-templates-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-chat-templates-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 Chat Templates 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: chat_templates
paths:
  /chat/templates:
    get:
      operationId: list_chat_templates
      responses:
        '200':
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/ChatTemplate'
                type: array
          description: Chat templates retrieved
        '500':
          description: Internal server error
      security:
      - api_key: []
      - session_token: []
      summary: List active chat templates for the /chat page
      tags:
      - chat_templates
  /chat/templates/{template_id}:
    get:
      operationId: get_chat_template
      parameters:
      - description: The chat template ID
        in: path
        name: template_id
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatTemplate'
          description: Chat template retrieved
        '404':
          description: Chat template not found
        '500':
          description: Internal server error
      security:
      - api_key: []
      - session_token: []
      tags:
      - chat_templates
components:
  schemas:
    UserId:
      format: uuid
      type: string
    TemplateQuestion:
      properties:
        options:
          items:
            type: string
          type:
          - array
          - 'null'
        prompt:
          type: string
      required:
      - prompt
      type: object
    ChatTemplateId:
      format: uuid
      type: string
    ChatTemplate:
      properties:
        chat_session_id:
          $ref: '#/components/schemas/ChatSessionId'
        created_at:
          format: date-time
          type: string
        created_by:
          $ref: '#/components/schemas/UserId'
        description:
          type: string
        display_order:
          format: int32
          type: integer
        id:
          $ref: '#/components/schemas/ChatTemplateId'
        image_url:
          type: string
        is_active:
          type: boolean
        questions:
          items:
            $ref: '#/components/schemas/TemplateQuestion'
          type: array
        title:
          type: string
        updated_at:
          format: date-time
          type: string
        updated_by:
          $ref: '#/components/schemas/UserId'
      required:
      - id
      - chat_session_id
      - title
      - description
      - image_url
      - display_order
      - is_active
      - created_by
      - updated_by
      - created_at
      - updated_at
      - questions
      type: object
    ChatSessionId:
      format: uuid
      type: string
  securitySchemes:
    api_key:
      in: header
      name: api_key
      type: apiKey
    session_token:
      scheme: bearer
      type: http