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

# User Boards

> User Boards

All boards belonging to a user handle.

## Example

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


## OpenAPI

````yaml openapi/pinterest.json GET /pinterest/user/boards
openapi: 3.0.0
info:
  title: Pinterest API
  description: >-
    Read public Pinterest data — search pins, fetch pin and board details, and
    list user boards.
  version: 1.0.0
servers:
  - url: https://api.aisa.one/apis/v1
security:
  - bearerAuth: []
paths:
  /pinterest/user/boards:
    get:
      tags:
        - Pinterest API
      summary: User Boards
      description: >-
        Fetches a paginated list of boards for a Pinterest user, returning each
        board's name, url, description, pin_count, follower_count, owner info,
        cover_images, and created_at. Supports pagination via cursor and a trim
        option for lighter responses.
      operationId: get_pinterest-user-boards
      parameters:
        - name: handle
          in: query
          required: true
          description: >-
            The username of the user to get boards for. (e.g. broadstbullycom
            from https://www.pinterest.com/broadstbullycom/)
          schema:
            type: string
          example: broadstbullycom
        - name: trim
          in: query
          required: false
          description: Set to true for a trimmed down version of the response
          schema:
            type: boolean
          example: 'false'
      responses:
        '200':
          description: Successful response
          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....
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````