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

# 获取详细的用户资料

> 查询指定 Pinterest 用户的完整资料，返回认证状态、粉丝数、Pin 数、创建时间等账号信息。适用于用户画像、账号核验和数据分析。

<div className="inline-flex items-center gap-2 px-4 py-2 bg-yellow-50 dark:bg-yellow-900/20 border border-yellow-200 dark:border-yellow-800 rounded-lg">
  <span className="text-base">🪙</span>
  <span className="text-sm font-medium text-yellow-900 dark:text-yellow-100"><span className="font-semibold">2 credits</span><span className="text-yellow-700 dark:text-yellow-300 ml-1">每次请求</span></span>
</div>

## Copy for AI

<div className="my-6 rounded-xl border border-gray-200 bg-gray-50 p-5 dark:border-gray-800 dark:bg-gray-900/40">
  <div className="min-w-0">
    <p className="text-base font-semibold text-gray-900 dark:text-gray-100">🤖 让 AI 帮你写调用代码</p>
    <p className="mt-1 text-sm text-gray-700 dark:text-gray-300">点击按钮复制一段结构化提示词，可直接交给 ChatGPT、Claude 或其他 AI 助手生成接口调用代码。</p>
  </div>

  <div className="mt-4">
    <button type="button" className="inline-flex items-center gap-2 rounded-md border border-emerald-300 bg-emerald-50 px-3 py-2 text-sm font-medium text-emerald-800 hover:bg-emerald-100 dark:border-emerald-700 dark:bg-emerald-900/30 dark:text-emerald-100 dark:hover:bg-emerald-900/50" onClick={() => navigator.clipboard.writeText("我想调用 KeyAPI 接口：GET https://api.keyapi.ai/v1/pinterest/information\n\n请帮我编写调用代码，并包含必要的错误处理、参数校验和响应处理逻辑。\n\n接口信息：\n\nEndpoint: GET https://api.keyapi.ai/v1/pinterest/information\n\nDescription: Pinterest 的「Pinterest详情」接口用于根据指定标识查询完整信息，返回基础资料、统计指标以及示例中的扩展字段。常用必填参数包括 username。\n\nRequired Headers:\n--header 'Authorization: Bearer <YOUR_API_KEY>'\n\nParameters:\n- username (Required): 用户名. Example: Musk\n\nExample Response:\n{\n  \"code\": 0,\n  \"message\": \"success\",\n  \"data\": {\n    \"user\": {\n      \"node_id\": \"VXNlcjoxMTc1MTc4NjQzNjEwMTE4OQ==\",\n      \"is_verified_merchant\": false,\n      \"verified_identity\": {},\n      \"pin_count\": 984,\n      \"interest_following_count\": 3,\n      \"last_pin_save_time\": \"Tue, 03 Mar 2026 12:15:23 +0000\",\n      \"is_partner\": false,\n      \"instagram_data\": null,\n      \"follower_count\": 33,\n      \"impressum_url\": null,\n      \"created_at\": \"Thu, 08 Dec 2011 22:16:54 +0000\",\n      \"type\": \"user\",\n      \"full_name\": \"Bev Delle Donne\",\n      \"seo_noindex_reason\": null,\n      \"eligible_profile_tabs\": [\n        {\n          \"id\": \"16385125363164\",\n          \"type\": \"profiletab\",\n          \"tab_type\": 1,\n          \"name\": \"Created\",\n          \"is_default\": false\n        },\n        {\n          \"id\": \"16385125363548\",\n          \"type\": \"profiletab\",\n          \"tab_type\": 0,\n          \"name\": \"Saved\",\n          \"is_default\": true\n        }\n      ],\n      \"indexed\": true,\n      \"is_inspirational_merchant\": false,\n      \"domain_verified\": false,\n      \"seo_title\": \"Bev Delle Donne (musk) - Profile | Pinterest\",\n      \"about\": \"\",\n      \"following_count\": 43,\n      \"first_name\": \"Bev\",\n      \"id\": \"11751786436101189\",\n      \"profile_cover\": {\n        \"id\": \"11751786436101189\"\n      },\n      \"is_private_profile\": false,\n      \"board_count\": 33,\n      \"image_xlarge_url\": \"https://i.pinimg.com/280x280_RS/d4/2f/eb/d42febf4404b0a9e6291945fbd1998d1.jpg\",\n      \"ads_only_profile_site\": null,\n      \"domain_url\": null,\n      \"username\": \"musk\",\n      \"seo_description\": \"See what Bev Delle Donne (musk) has discovered on Pinterest, the world's biggest collection of ideas.\",\n      \"is_gco_account\": false,\n      \"image_medium_url\": \"https://i.pinimg.com/75x75_RS/d4/2f/eb/d42febf4404b0a9e6291945fbd1998d1.jpg\",\n      \"is_primary_website_verified\": false,\n      \"partner\": null,\n      \"website_url\": null,\n      \"seo_canonical_domain\": \"www.pinterest.com\",\n      \"is_ads_only_profile\": false\n    }\n  },\n  \"requestId\": \"7a39780c-cf9d-4ca4-a561-507c2026d1fd\"\n}\n\n请根据以上信息给出可直接运行的示例代码。")}>
      ✨ 复制给 AI
    </button>
  </div>
</div>


## OpenAPI

````yaml zh/pinterest.zh.openapi.json GET /v1/pinterest/information
openapi: 3.0.1
info:
  title: Pinterest API 中文文档
  description: Pinterest API 的中文参考文档，包含接口用途、参数说明、响应状态和示例结构。
  version: 1.0.0
servers:
  - url: https://api.keyapi.ai
    description: Production
security:
  - JWT Bearer: []
tags: []
paths:
  /v1/pinterest/information:
    get:
      tags: []
      summary: 获取详细的用户资料
      description: 查询指定 Pinterest 用户的完整资料，返回认证状态、粉丝数、Pin 数、创建时间等账号信息。适用于用户画像、账号核验和数据分析。
      parameters:
        - name: username
          in: query
          description: 查询的 Pinterest 用户名
          required: true
          example: Musk
          schema:
            type: string
            example: Musk
      responses:
        '200':
          description: 请求成功
          content:
            application/json:
              schema:
                type: object
                properties: {}
              example:
                code: 0
                message: success
                data:
                  user:
                    node_id: VXNlcjoxMTc1MTc4NjQzNjEwMTE4OQ==
                    is_verified_merchant: false
                    verified_identity: {}
                    pin_count: 984
                    interest_following_count: 3
                    last_pin_save_time: Tue, 03 Mar 2026 12:15:23 +0000
                    is_partner: false
                    instagram_data: null
                    follower_count: 33
                    impressum_url: null
                    created_at: Thu, 08 Dec 2011 22:16:54 +0000
                    type: user
                    full_name: Bev Delle Donne
                    seo_noindex_reason: null
                    eligible_profile_tabs:
                      - id: '16385125363164'
                        type: profiletab
                        tab_type: 1
                        name: Created
                        is_default: false
                      - id: '16385125363548'
                        type: profiletab
                        tab_type: 0
                        name: Saved
                        is_default: true
                    indexed: true
                    is_inspirational_merchant: false
                    domain_verified: false
                    seo_title: Bev Delle Donne (musk) - Profile | Pinterest
                    about: ''
                    following_count: 43
                    first_name: Bev
                    id: '11751786436101189'
                    profile_cover:
                      id: '11751786436101189'
                    is_private_profile: false
                    board_count: 33
                    image_xlarge_url: >-
                      https://i.pinimg.com/280x280_RS/d4/2f/eb/d42febf4404b0a9e6291945fbd1998d1.jpg
                    ads_only_profile_site: null
                    domain_url: null
                    username: musk
                    seo_description: >-
                      See what Bev Delle Donne (musk) has discovered on
                      Pinterest, the world's biggest collection of ideas.
                    is_gco_account: false
                    image_medium_url: >-
                      https://i.pinimg.com/75x75_RS/d4/2f/eb/d42febf4404b0a9e6291945fbd1998d1.jpg
                    is_primary_website_verified: false
                    partner: null
                    website_url: null
                    seo_canonical_domain: www.pinterest.com
                    is_ads_only_profile: false
                requestId: 7a39780c-cf9d-4ca4-a561-507c2026d1fd
          headers: {}
        '400':
          description: 请求参数错误，请检查必填字段和参数格式
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 400
                  data: null
                  message: 'Missing required parameter: handle'
        '401':
          description: 鉴权失败，请检查 Authorization Header 中的 Bearer Token 或 API Key 是否有效
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 401
                  data: null
                  message: apiKey is null
        '402':
          description: 账户余额或额度不足
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 402
                  data: null
                  message: apiKey quota is not enough
        '429':
          description: 请求过于频繁，已触发限流
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 429
                  data: null
                  message: qps limit exceeded
        '500':
          description: 服务器内部错误，请稍后重试
          content:
            application/json:
              schema:
                type: object
                example:
                  code: 500
                  data: null
                  message: Internal server error
      deprecated: false
      security:
        - JWT Bearer: []
      x-codeSamples:
        - lang: curl
          label: cURL
          source: |-
            curl --request GET \
              --url 'https://api.keyapi.ai/v1/pinterest/information?username=Musk' \
              --header 'Authorization: Bearer <YOUR_API_KEY>'
        - lang: python
          label: Python
          source: |-
            import requests

            response = requests.get(
                'https://api.keyapi.ai/v1/pinterest/information',
                params={"username": "Musk"},
                headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
            )
            print(response.json())
        - lang: javascript
          label: JavaScript
          source: >-
            const params = new URLSearchParams({"username": "Musk"});


            const response = await
            fetch(`https://api.keyapi.ai/v1/pinterest/information?${params}`, {
              method: 'GET',
              headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
            });

            const data = await response.json();

            console.log(data);
components:
  securitySchemes:
    JWT Bearer:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: |-
        接口鉴权凭证。请在请求 Header 中传入 `Authorization: Bearer <YOUR_API_KEY>`。
        可在 [Dashboard](https://keyapi.ai/app/dashboard) 获取你的 API Key。

````