> ## 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.

# 看板

> 看板

通过画板 URL 获取画板中包含的 Pin。

## 示例

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


## OpenAPI

````yaml openapi/zh/pinterest.json GET /pinterest/board
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/board:
    get:
      tags:
        - Pinterest API
      summary: 看板
      description: >-
        通过 URL 获取 Pinterest 看板中分页的 Pin 列表，返回每个 Pin 的
        id、description、title、images、看板信息、pin_join 注释和 aggregated_pin_data。支持通过
        cursor 分页，并提供 trim 选项以返回更精简的响应。
      operationId: get_pinterest-board
      parameters:
        - name: url
          in: query
          required: true
          description: 要获取的看板 URL
          schema:
            type: string
          example: https://www.pinterest.com/lizmrodgers/moms-night/
        - name: cursor
          in: query
          required: false
          description: 用于获取下一页结果的游标
          schema:
            type: string
          example: Y2JURlEwTWsxNlp6Vk9SR2MwV....
        - name: trim
          in: query
          required: false
          description: 设为 true 以返回精简版响应
          schema:
            type: boolean
          example: 'false'
      responses:
        '200':
          description: 成功响应
          content:
            application/json:
              example:
                success: true
                pins:
                  - id: '549579960798399243'
                    link: https://gekbuzz.com/crispy-air-fryer-pizza-rolls-recipe/
                    title: Crispy Air Fryer Pizza Rolls Recipe -
                    board:
                      node_id: Qm9hcmQ6NTQ5NTgwMDI5NDY3NTc3NDM2
                      followed_by_me: false
                      owner:
                        node_id: VXNlcjo1NDk1ODAwOTgxODYwMzM3MzU=
                        image_small_url: https://s.pinimg.com/images/user/default_30.png
                        is_primary_website_verified: true
                        is_verified_merchant: false
                        full_name: Gekbuzz
                        username: sharat24k
                        image_medium_url: https://s.pinimg.com/images/user/default_75.png
                        id: '549580098186033735'
                        verified_identity: {}
                      privacy: public
                      is_collaborative: false
                      url: /sharat24k/pizza-recipes/
                      layout: default
                      type: board
                      name: Pizza Recipes
                      id: '549580029467577436'
                      collaborated_by_me: false
                    unified_user_note: >-
                      Craving a quick snack that combines cheesy goodness and
                      crispy texture? These air fryer pizza rolls are the
                      answer! Perfect for movie nights, parties, or just a
                      casual treat, they pack all the flavor of your favorite
                      pizza into a bite-sized delight. Imagine biting into a
                      perfectly golden roll where melty cheese and zesty sauce
                      meld together. The air fryer gives these pizza rolls a
                      satisfying crunch without the extra oil, making them a
                      healthier option that doesn’t skimp on taste.
                    alt_text: >-
                      Crispy air fryer pizza rolls served with marinara sauce
                      for dipping on a plate.
                    rich_summary:
                      actions: []
                      products: []
                      apple_touch_icon_link: null
                      type_name: article
                      type: richpingriddata
                      id: 5aa12f54bef882f6f3cdd77234027e25
                      favicon_link: https://s.pinimg.com/images/default_rich_pin_favicon.png
                      url: https://gekbuzz.com/crispy-air-fryer-pizza-rolls-recipe/
                      display_name: Crispy Air Fryer Pizza Rolls Recipe -
                      favicon_images:
                        orig: >-
                          https://s.pinimg.com/images/default_rich_pin_favicon.png
                      display_description: >-
                        Craving a quick snack that combines cheesy goodness and
                        crispy texture? These air fryer pizza rolls are the
                        answer! Perfect for movie nights, parties, or just a
                        casual treat, they pack all the flavor of your favorite
                        pizza into a bite-sized delight. Imagine biting into a
                        perfectly golden roll where melty cheese and zesty sauce
                        […]
                      apple_touch_icon_images: null
                      site_name: gekbuzz.com
                    reaction_counts: {}
                    pinner:
                      node_id: VXNlcjo1NDk1ODAwOTgxODYwMzM3MzU=
                      image_small_url: https://s.pinimg.com/images/user/default_30.png
                      is_primary_website_verified: true
                      is_verified_merchant: false
                      full_name: Gekbuzz
                      username: sharat24k
                      image_medium_url: https://s.pinimg.com/images/user/default_75.png
                      id: '549580098186033735'
                      verified_identity: {}
                    description: >-
                      Craving a quick snack that combines cheesy goodness and
                      crispy texture? These air fryer pizza rolls are the
                      answer! Perfect for movie nights, parties, or just a
                      casual treat, they pack all the flavor of your favorite
                      pizza into a bite-sized delight. Imagine biting into a
                      perfectly golden roll where melty cheese and zesty sauce
                      meld together. The air fryer gives these pizza rolls a
                      satisfying crunch without the extra oil, making them a
                      healthier option that doesn’t skimp on taste.
                    domain: gekbuzz.com
                cursor: Y2JURlEwTVU1RWF6Rk9lbXMxV....
              schema:
                $ref: '#/components/schemas/PinterestPinsResponse'
components:
  schemas:
    PinterestPinsResponse:
      type: object
      properties:
        success:
          type: boolean
        credits_remaining:
          type: integer
        pins:
          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 获取

````