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

# List Agent Sign-Ups (Admin)

> Returns API key sign-up records created by AI agents. Agent sign-ups are identified by the agent+ email prefix in the associated account email. Supports period filtering and returns individual API key records with their associated email and creation timestamp, suitable for building sign-up trend charts. Requires admin authentication.



## OpenAPI

````yaml api-reference/openapi/accounts.json GET /api/admins/agent/signups
openapi: 3.1.0
info:
  title: Recoup API - Accounts
  description: >-
    API documentation for the Recoup platform - an AI agent platform for the
    music industry
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.recoupable.dev
security: []
paths:
  /api/admins/agent/signups:
    get:
      description: >-
        Returns API key sign-up records created by AI agents. Agent sign-ups are
        identified by the agent+ email prefix in the associated account email.
        Supports period filtering and returns individual API key records with
        their associated email and creation timestamp, suitable for building
        sign-up trend charts. Requires admin authentication.
      parameters:
        - name: period
          in: query
          description: >-
            Time period to filter sign-ups. One of: all (no date filter), daily
            (last 24 hours), weekly (last 7 days), monthly (last 30 days).
            Defaults to all.
          required: false
          schema:
            type: string
            enum:
              - all
              - daily
              - weekly
              - monthly
            default: all
      responses:
        '200':
          description: Agent sign-up records retrieved successfully
          content:
            application/json:
              schema:
                type: object
                required:
                  - status
                  - total
                  - signups
                properties:
                  status:
                    type: string
                    enum:
                      - success
                    description: Status of the request
                  total:
                    type: integer
                    description: >-
                      Total number of agent API key sign-ups matching the period
                      filter
                    example: 42
                  signups:
                    type: array
                    description: >-
                      Array of agent API key sign-up records, ordered by
                      creation date descending
                    items:
                      type: object
                      required:
                        - id
                        - name
                        - email
                        - created_at
                      properties:
                        id:
                          type: string
                          format: uuid
                          description: Unique identifier of the API key record
                        name:
                          type: string
                          description: Name given to the API key
                        email:
                          type: string
                          format: email
                          description: The agent+ prefixed email used to create the API key
                        created_at:
                          type: string
                          format: date-time
                          description: Timestamp when the API key was created
        '401':
          description: Unauthorized - missing or invalid credentials
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountErrorResponse'
        '403':
          description: Forbidden - authenticated account is not an admin
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AccountErrorResponse'
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  schemas:
    AccountErrorResponse:
      type: object
      required:
        - status
        - message
      properties:
        status:
          type: string
          enum:
            - error
          description: Status of the request
        message:
          type: string
          description: Error message describing what went wrong
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Your Recoup API key. [Learn more](/quickstart#api-keys).
    bearerAuth:
      type: http
      scheme: bearer

````