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

# Project Mindshare



## OpenAPI

````yaml openapi.json GET /gateway/v1/social/mindshare
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/social/mindshare:
    get:
      tags:
        - Social
      summary: Project Mindshare Time Series
      description: >-
        Returns mindshare (social view count) **time-series trend** for a
        project, aggregated by `interval`.


        **Intervals:** `5m`, `1h`, `1d`, `7d`.


        **Filters:** date range with `from`/`to` (Unix seconds). Lookup by name
        (`q`).


        Use this for sentiment **trends**, mindshare **over time**, or social
        momentum changes.


        For a **point-in-time snapshot** of social analytics (sentiment score,
        follower geo, smart followers), use `/social/detail` instead.
      operationId: social-mindshare
      parameters:
        - description: Entity name to resolve like `uniswap`, `ethereum`, or `aave`
          explode: false
          in: query
          name: q
          required: true
          schema:
            description: Entity name to resolve like `uniswap`, `ethereum`, or `aave`
            examples:
              - uniswap
            type: string
        - description: Time aggregation interval. Can be `5m`, `1h`, `1d`, or `7d`.
          explode: false
          in: query
          name: interval
          required: true
          schema:
            description: Time aggregation interval. Can be `5m`, `1h`, `1d`, or `7d`.
            enum:
              - 5m
              - 1h
              - 1d
              - 7d
            examples:
              - 1d
            type: string
        - description: >-
            Start timestamp. Accepts Unix seconds (1704067200) or date string
            (2024-01-01)
          explode: false
          in: query
          name: from
          schema:
            description: >-
              Start timestamp. Accepts Unix seconds (1704067200) or date string
              (2024-01-01)
            examples:
              - '1704067200'
            type: string
        - description: >-
            End timestamp. Accepts Unix seconds (1706745600) or date string
            (2024-02-01)
          explode: false
          in: query
          name: to
          schema:
            description: >-
              End timestamp. Accepts Unix seconds (1706745600) or date string
              (2024-02-01)
            examples:
              - '1706745600'
            type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseSocialMindsharePoint'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseSocialMindsharePoint:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataResponseSocialMindsharePoint.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/SocialMindsharePoint'
          type:
            - array
            - 'null'
        meta:
          $ref: '#/components/schemas/OffsetMeta'
      required:
        - data
        - meta
      type: object
    DataAPIError:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - https://example.com/schemas/DataAPIError.json
          format: uri
          readOnly: true
          type: string
        error:
          $ref: '#/components/schemas/DataAPIErrorDetail'
      required:
        - error
      type: object
    SocialMindsharePoint:
      additionalProperties: false
      properties:
        timestamp:
          description: Unix timestamp in seconds
          format: int64
          type: integer
        value:
          description: Mindshare view count at this timestamp
          format: int64
          type: integer
      required:
        - timestamp
        - value
      type: object
    OffsetMeta:
      additionalProperties: false
      properties:
        cached:
          description: Whether this response was served from cache
          type: boolean
        credits_used:
          description: Credits deducted for this request
          format: int64
          type: integer
        limit:
          description: Maximum number of items returned in this response
          format: int64
          type: integer
        offset:
          description: Number of items skipped (pagination offset)
          format: int64
          type: integer
        total:
          description: >-
            Total number of matching items (before pagination). Omitted when
            total is unknown.
          format: int64
          type: integer
      required:
        - limit
        - offset
        - credits_used
        - cached
      type: object
    DataAPIErrorDetail:
      additionalProperties: false
      properties:
        code:
          type: string
        message:
          type: string
      required:
        - code
        - message
      type: object

````