# 内容微调 API

## OpenAPI Specification

```yaml
openapi: 3.0.1
info:
  title: ''
  description: ''
  version: 1.0.0
paths:
  /webhook/text-spinner:
    post:
      summary: 内容微调 API
      deprecated: false
      description: >
        使用此接口快速微调较大的文本。

        内容微调器一次最多可以输入10,000个字符,并将旋转内容容片段上的同义词。这样做的好处是可以快速浏览大段文字。缺点是仍然需要大量编辑才能使其达到可读水平。

        一次最多需要10,000个字符,因此请不要超过该限制,否则您将收到错误。此端点的限制仍在确定中,并将根据使用情况进行更新。
      tags:
        - 内容改写
      parameters:
        - name: x-api-key
          in: header
          description: Your API Key
          required: true
          schema:
            type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                text:
                  type: string
                  description: 那只猫坐在席子上和他的伙伴们一起喝酒了一整夜。
              x-apifox-orders:
                - text
              required:
                - text
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  properties:
                    text:
                      type: string
                  x-apifox-orders:
                    - text
              example:
                - text: >-
                    The feline sat on the mat drinking with his pals the entire
                    evening
          headers: {}
          x-apifox-name: 成功
      security: []
      x-apifox-folder: 内容改写
      x-apifox-status: released
      x-run-in-apifox: https://app.apifox.com/web/project/4050092/apis/api-149309211-run
components:
  schemas: {}
  securitySchemes: {}
servers:
  - url: http://dev-cn.your-api-server.com
    description: 开发环境
  - url: http://test-cn.your-api-server.com
    description: 测试环境
  - url: https://flows.contentvillain.com/webhook/
    description: 正式环境
security: []

```
