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

# Pin

> Pin

Full details of a single pin by URL.

## Example

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


## OpenAPI

````yaml openapi/pinterest.json GET /pinterest/pin
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/pin:
    get:
      tags:
        - Pinterest API
      summary: Pin
      description: >-
        Fetches detailed information about a single Pinterest pin by URL,
        returning title, description, link, dominantColor, originPinner, pinner,
        images at multiple resolutions (imageSpec_236x through imageSpec_orig),
        and pinJoin with visual annotations. Supports a trim option for lighter
        responses.
      operationId: get_pinterest-pin
      parameters:
        - name: url
          in: query
          required: true
          description: Pinterest pin URL
          schema:
            type: string
          example: https://www.pinterest.com/pin/1124351863225567517/
        - 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
                entityId: '36662184461578355'
                seoAltText: >-
                  a small brown dog sitting in the back seat of a car with its
                  head hanging out
                originPinner:
                  entityId: '1144125617743372495'
                  id: VXNlcjoxMTQ0MTI1NjE3NzQzMzcyNDk1
                  username: Chloe_hi15
                  imageMediumUrl: >-
                    https://i.pinimg.com/75x75_RS/90/99/6f/90996f6eac9c9fd4836fba948699fd28.jpg
                  blockedByMe: false
                  explicitlyFollowedByMe: false
                  followerCount: 55
                  fullName: Chloe Marie Monroe
                  imageLargeUrl: >-
                    https://i.pinimg.com/140x140_RS/90/99/6f/90996f6eac9c9fd4836fba948699fd28.jpg
                  imageSmallUrl: >-
                    https://i.pinimg.com/30x30_RS/90/99/6f/90996f6eac9c9fd4836fba948699fd28.jpg
                  isVerifiedMerchant: false
                  verifiedIdentity:
                    verified: null
                pinner:
                  blockedByMe: false
                  id: VXNlcjozNjY2MjMyMTg3NDk5NjcxNQ==
                  entityId: '36662321874996715'
                  __typename: User
                  fullName: Crystal Catlett
                  imageSmallUrl: >-
                    https://i.pinimg.com/30x30_RS/51/76/82/5176824c31aaeec633f0f09bf1ca12e4.jpg
                  imageLargeUrl: >-
                    https://i.pinimg.com/140x140_RS/51/76/82/5176824c31aaeec633f0f09bf1ca12e4.jpg
                  explicitlyFollowedByMe: false
                  username: cc1025
                  imageMediumUrl: >-
                    https://i.pinimg.com/75x75_RS/51/76/82/5176824c31aaeec633f0f09bf1ca12e4.jpg
                  firstName: Crystal
                  followerCount: 347
                  isVerifiedMerchant: false
                  verifiedIdentity:
                    verified: null
                imageSpec_orig:
                  url: >-
                    https://i.pinimg.com/originals/71/5c/5d/715c5d48feb038e16f48a28e6f8ca1f3.jpg
                description: ' '
                shareCount: 0
                nativeCreator: null
                createdAt: Mon, 09 Jun 2025 04:04:22 +0000
                repinCount: 88
                totalReactionCount: 88
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: AIsa API key. Get yours at https://aisa.one

````