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

# Scrapers Homepage Social Cache

> Homepage social-crawl cache: freshness, tier mix, per-competitor gaps.

Social discovery is a competitor-CREATION step — one homepage crawl per
registrable domain, all platform links saved together — so this cache is
what every later refresh reads instead of re-crawling. A per-platform GAP
is what drives repeat acquisition attempts, which makes this the panel that
surfaces that class of spend.



## OpenAPI

````yaml /openapi.json get /api/v1/admin/scrapers/homepage-cache
openapi: 3.1.0
info:
  title: AITasker
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/admin/scrapers/homepage-cache:
    get:
      tags:
        - Admin Scrapers
      summary: Scrapers Homepage Social Cache
      description: >-
        Homepage social-crawl cache: freshness, tier mix, per-competitor gaps.


        Social discovery is a competitor-CREATION step — one homepage crawl per

        registrable domain, all platform links saved together — so this cache is

        what every later refresh reads instead of re-crawling. A per-platform
        GAP

        is what drives repeat acquisition attempts, which makes this the panel
        that

        surfaces that class of spend.
      operationId: scrapers_homepage_social_cache_api_v1_admin_scrapers_homepage_cache_get
      parameters:
        - name: max_age_days
          in: query
          required: false
          schema:
            type: integer
            maximum: 365
            minimum: 1
            default: 30
            title: Max Age Days
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 500
            minimum: 1
            default: 100
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            title: Offset
            default: 0
        - name: only_gaps
          in: query
          required: false
          schema:
            type: boolean
            default: false
            title: Only Gaps
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - HTTPBearer: []
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    HTTPBearer:
      type: http
      scheme: bearer

````