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

# Get Rednote Profiles

> Fetch normalized profiles data from Rednote.

# Get Rednote Profiles

Fetch normalized profiles data from Rednote.

Each successful task costs a fixed `1.00` credits.

## Request Body

```json theme={"system"}
{
  "user_id": "65d8c7d40000000005033a6b"
}
```

## Use with MCP

| Interface      | Value                                                  |
| -------------- | ------------------------------------------------------ |
| REST           | `POST /v1/rednote/user-profile`                        |
| Compact MCP    | `socq_execute` with `endpoint: "rednote/user-profile"` |
| Typed MCP      | `socq_rednote_user_profile`                            |
| Exact-tool URL | `https://api.socq.ai/mcp?tools=rednote_profiles`       |
| CLI            | `socq rednote user-profile`                            |

<Info>
  A successful request returns a `task_id`. Poll it with `socq_get_task`, then read normalized records from `results.items`.
</Info>

## Result Fields

| Field                     | Type      | Nullable | Description                                                              |
| ------------------------- | --------- | -------- | ------------------------------------------------------------------------ |
| `id`                      | `string`  | Yes      | Unique identifier for this result item.                                  |
| `platform`                | `string`  | No       | Platform the result belongs to, such as `instagram` or `linkedin`.       |
| `resource`                | `string`  | No       | SocQ resource represented by the result, such as `videos` or `comments`. |
| `type`                    | `string`  | No       | Category of the result item, such as `video`, `post`, or `comment`.      |
| `url`                     | `string`  | Yes      | Public URL of the result item when available.                            |
| `published_at`            | `string`  | Yes      | Time the source item was published, in ISO 8601 format when available.   |
| `collected_at`            | `string`  | No       | Time SocQ collected or processed this result, in ISO 8601 format.        |
| `username`                | `string`  | Yes      | Public username or handle of the account.                                |
| `name`                    | `string`  | Yes      | Display name of the account or profile.                                  |
| `text`                    | `string`  | Yes      | Biography or description of the account or profile.                      |
| `avatar_url`              | `string`  | Yes      | URL of the account avatar image.                                         |
| `cover_url`               | `string`  | Yes      | URL of the cover image.                                                  |
| `website`                 | `string`  | Yes      | Website associated with the account, company, or advertiser.             |
| `is_verified`             | `boolean` | Yes      | Whether the account is verified on the platform.                         |
| `is_private`              | `boolean` | Yes      | Whether the account is private.                                          |
| `location`                | `object`  | Yes      | Geographic location associated with the result.                          |
| `location`                | `object`  | No       | Field value in the standard result.                                      |
| `location.name`           | `string`  | Yes      | Human-readable location name.                                            |
| `location.city`           | `string`  | Yes      | City name.                                                               |
| `location.region`         | `string`  | Yes      | Region, state, or province name.                                         |
| `location.country`        | `string`  | Yes      | Country or territory name or code.                                       |
| `location.latitude`       | `number`  | Yes      | Latitude in decimal degrees.                                             |
| `location.longitude`      | `number`  | Yes      | Longitude in decimal degrees.                                            |
| `metrics`                 | `object`  | Yes      | Counters and measurements available for the result item.                 |
| `metrics`                 | `object`  | No       | Field value in the standard result.                                      |
| `metrics.followers_count` | `integer` | Yes      | Number of followers.                                                     |
| `metrics.following_count` | `integer` | Yes      | Number of accounts followed.                                             |
| `metrics.posts_count`     | `integer` | Yes      | Number of posts or posts associated with the trend.                      |

## Completed Task Response

```json theme={"system"}
{
  "code": 200,
  "message": "success",
  "data": {
    "task_id": "task_example",
    "public_id": "rednote/user-profile",
    "status": "succeeded",
    "result_count": 0,
    "credits_amount": 0,
    "results": {
      "schema_id": "account",
      "schema_version": "1.0",
      "items": [],
      "limit": 20,
      "next_cursor": null,
      "has_more": false
    }
  }
}
```


## OpenAPI

````yaml api-manual/agent-api/agent-api.json POST /v1/rednote/user-profile
openapi: 3.1.0
info:
  title: SocQ Agent API
  version: v1-d93e6d4f8368
  description: Asynchronous social data API generated from the SocQ Capability Registry.
servers:
  - url: https://api.socq.ai
security: []
paths:
  /v1/rednote/user-profile:
    post:
      tags:
        - rednote
      summary: Rednote Profile API
      description: Collect a public Rednote profile.
      operationId: socq_rednote_user_profile
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $schema: https://json-schema.org/draft/2020-12/schema
              type: object
              additionalProperties: false
              properties:
                url:
                  type: string
                  minLength: 1
                  description: A public content or product URL.
                user_id:
                  type: string
                  minLength: 1
                  description: A public account identifier.
              required: []
              anyOf:
                - required:
                    - url
                - required:
                    - user_id
      responses:
        '200':
          description: Task accepted
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentSubmitResponse'
        '422':
          description: Input validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AgentValidationErrorResponse'
      security:
        - bearerAuth: []
        - apiKeyAuth: []
components:
  schemas:
    AgentSubmitResponse:
      type: object
      properties:
        code:
          type: integer
          const: 200
        data:
          type: object
          properties:
            task_id:
              type: string
            status:
              type: string
            created_time:
              type:
                - string
                - 'null'
          required:
            - task_id
            - status
    AgentValidationErrorResponse:
      type: object
      properties:
        code:
          type: integer
          const: 422
        error:
          type: object
          properties:
            message:
              type: string
            type:
              type: string
            details:
              type: object
          required:
            - message
            - type
      required:
        - code
        - error
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````