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

# Cross-coin scanner (S1)

> All coins ranked by composite activity score. The entry point every session. **Credit cost: 10**



## OpenAPI

````yaml /openapi.json get /v1/signals/scanner
openapi: 3.1.0
info:
  title: Pedge API
  description: >-
    Cross-exchange perpetual futures intelligence API. Pure math — Z-scores,
    percentiles, ratios, classifications. 5 exchanges, 37 endpoints,
    credit-based pricing.
  version: 1.0.0
  contact:
    name: Pedge
    url: https://pedge.xyz
servers:
  - url: https://api.pedge.xyz
    description: Production
  - url: http://localhost:3007
    description: Local development
security:
  - apiKey: []
paths:
  /v1/signals/scanner:
    get:
      tags:
        - Signals
      summary: Cross-coin scanner (S1)
      description: >-
        All coins ranked by composite activity score. The entry point every
        session. **Credit cost: 10**
      operationId: getV1SignalsScanner
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 10
            maximum: 50
        - name: min_score
          in: query
          schema:
            type: integer
            default: 0
      responses:
        '200':
          description: Ranked coins with scores
components:
  securitySchemes:
    apiKey:
      type: http
      scheme: bearer
      description: >-
        API key from app.pedge.xyz dashboard. Pass as `Authorization: Bearer
        pdg_...`

````