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

# Search

> Search

Search Pinterest pins by keyword.

## Example

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


## OpenAPI

````yaml openapi/pinterest.json GET /pinterest/search
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/search:
    get:
      tags:
        - Pinterest API
      summary: Search
      description: >-
        Searches Pinterest for pins matching a query, returning results with id,
        url, title, description, images, link, domain, board info, and pinner
        details. Supports pagination via cursor and a trim option for lighter
        responses.
      operationId: get_pinterest-search
      parameters:
        - name: query
          in: query
          required: true
          description: Search query
          schema:
            type: string
          example: Italian Pot Roast
        - name: cursor
          in: query
          required: false
          description: Cursor
          schema:
            type: string
          example: Y2JVSG81V2sxcmNHRlpWM1J...
        - 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
                pins:
                  - id: '643874078015272259'
                    url: https://www.pinterest.com/pin/643874078015272259
                    description: >-
                      #cute #animal #dog #puppy #pfp #icon #dogpfp #silly
                      #cutepuppy #bordercollie #fyp #trend
                    created_at: Tue, 10 Jun 2025 21:45:32 +0000
                    pinner:
                      node_id: VXNlcjo2NDM4NzQyMTUzODQxMzkwMTg=
                      full_name: Annika Strøm
                      is_ads_only_profile: false
                      username: annikastrom2
                      image_medium_url: >-
                        https://i.pinimg.com/75x75_RS/60/d5/a8/60d5a8405ec70c5c46b677186c626587.jpg
                      is_primary_website_verified: false
                      follower_count: 2
                      ads_only_profile_site: null
                      id: '643874215384139018'
                      is_verified_merchant: false
                      image_large_url: >-
                        https://i.pinimg.com/140x140_RS/60/d5/a8/60d5a8405ec70c5c46b677186c626587.jpg
                      verified_identity: {}
                      image_small_url: >-
                        https://i.pinimg.com/30x30_RS/60/d5/a8/60d5a8405ec70c5c46b677186c626587.jpg
                    images:
                      170x:
                        width: 236
                        height: 312
                        url: >-
                          https://i.pinimg.com/236x/a7/d6/dc/a7d6dced1ee95c11a150dcf2f1c6e05f.jpg
                      236x:
                        width: 236
                        height: 312
                        url: >-
                          https://i.pinimg.com/236x/a7/d6/dc/a7d6dced1ee95c11a150dcf2f1c6e05f.jpg
                      474x:
                        width: 474
                        height: 626
                        url: >-
                          https://i.pinimg.com/474x/a7/d6/dc/a7d6dced1ee95c11a150dcf2f1c6e05f.jpg
                      736x:
                        width: 736
                        height: 973
                        url: >-
                          https://i.pinimg.com/736x/a7/d6/dc/a7d6dced1ee95c11a150dcf2f1c6e05f.jpg
                      orig:
                        width: 946
                        height: 1251
                        url: >-
                          https://i.pinimg.com/originals/a7/d6/dc/a7d6dced1ee95c11a150dcf2f1c6e05f.jpg
                cursor: Y2JVSG81V2sxcmNHRlpWM1J5VFVad1ZsWl...
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````