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

# Smart Follower History



## OpenAPI

````yaml openapi.json GET /gateway/v1/social/smart-followers/history
openapi: 3.1.0
info:
  title: Hermod
  version: 0.0.1
servers:
  - url: https://api.asksurf.ai
security: []
paths:
  /gateway/v1/social/smart-followers/history:
    get:
      tags:
        - Social
      summary: Smart Follower Count History
      description: >-
        Returns smart follower count time-series for a project, sorted by date
        descending.


        **Lookup:** by X account ID (`x_id`) or project name (`q`). The `q`
        parameter must be a project name (e.g. `uniswap`, `ethereum`), not a
        personal X handle — use `x_id` for individual accounts. Returns 404 if
        the project has no linked X account.
      operationId: social-smart-followers-history
      parameters:
        - description: Numeric X (Twitter) account ID (takes priority over `q`)
          explode: false
          in: query
          name: x_id
          schema:
            description: Numeric X (Twitter) account ID (takes priority over `q`)
            examples:
              - '984188226826010624'
            type: string
        - description: >-
            Project name to resolve (e.g. `uniswap`, `ethereum`). Must be a
            project with a linked X account — personal handles like
            `VitalikButerin` return 404. Use `x_id` for individual accounts.
          explode: false
          in: query
          name: q
          schema:
            description: >-
              Project name to resolve (e.g. `uniswap`, `ethereum`). Must be a
              project with a linked X account — personal handles like
              `VitalikButerin` return 404. Use `x_id` for individual accounts.
            examples:
              - uniswap
            type: string
        - description: >-
            Max data points to return (upstream typically provides ~36 daily
            points)
          explode: false
          in: query
          name: limit
          schema:
            default: 36
            description: >-
              Max data points to return (upstream typically provides ~36 daily
              points)
            examples:
              - 36
            format: int64
            maximum: 100
            minimum: 1
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataResponseSmartFollowerHistoryPoint'
          description: OK
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAPIError'
          description: Error
      security:
        - AccessToken: []
components:
  schemas:
    DataResponseSmartFollowerHistoryPoint:
      additionalProperties: false
      properties:
        $schema:
          description: A URL to the JSON Schema for this object.
          examples:
            - >-
              https://example.com/schemas/DataResponseSmartFollowerHistoryPoint.json
          format: uri
          readOnly: true
          type: string
        data:
          items:
            $ref: '#/components/schemas/SmartFollowerHistoryPoint'
          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
    SmartFollowerHistoryPoint:
      additionalProperties: false
      properties:
        count:
          description: Number of smart followers on this date
          format: int32
          type: integer
        date:
          description: Date in YYYY-MM-DD format
          type: string
      required:
        - date
        - count
      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

````