> ## Documentation Index
> Fetch the complete documentation index at: https://aisa.one/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 用户看板

> 用户看板

属于某个用户账号的所有画板。

## 示例

```bash theme={null}
curl "https://api.aisa.one/apis/v1/pinterest/user/boards?handle=VALUE" \
  -H "Authorization: Bearer YOUR_API_KEY"
```


## OpenAPI

````yaml openapi/zh/pinterest.json GET /pinterest/user/boards
openapi: 3.0.0
info:
  title: Pinterest API
  description: 读取公开的 Pinterest 数据——搜索 Pin、获取 Pin 和图板详情，以及列出用户图板。
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /pinterest/user/boards:
    get:
      tags:
        - Pinterest API
      summary: 用户看板
      description: >-
        获取 Pinterest 用户的分页画板列表，返回每个画板的
        name、url、description、pin_count、follower_count、owner 信息、cover_images 和
        created_at。支持通过 cursor 分页，并提供 trim 选项以返回更精简的响应。
      operationId: get_pinterest-user-boards
      parameters:
        - name: handle
          in: query
          required: true
          description: >-
            要获取其画板的用户的用户名。（例如 https://www.pinterest.com/broadstbullycom/ 中的
            broadstbullycom）
          schema:
            type: string
          example: broadstbullycom
        - name: trim
          in: query
          required: false
          description: 设为 true 以返回精简版响应
          schema:
            type: boolean
          example: 'false'
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              example:
                success: true
                boards:
                  - id: '549580029467577434'
                    url: https://www.pinterest.com/sharat24k/turkey-recipes/
                    description: ''
                    follower_count: 292
                    pin_count: 545
                    name: Turkey Recipes
                    image_cover_hd_url: >-
                      https://i.pinimg.com/474x/45/00/df/4500dfc5bc8bbc15137ff9d9abf04cc1.jpg
                    created_at: Mon, 17 Feb 2025 02:19:26 +0000
                cursor: LT41NDk1ODAwMjk0Njc1Njc1O....
              schema:
                $ref: '#/components/schemas/PinterestBoardsResponse'
components:
  schemas:
    PinterestBoardsResponse:
      type: object
      properties:
        success:
          type: boolean
        credits_remaining:
          type: integer
        boards:
          type: array
          items:
            type: object
            additionalProperties: true
        cursor:
          type: string
          nullable: true
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API 密钥。前往 https://aisa.one 获取

````