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

# List My Skills

> List current seller's published skills with revenue data.



## OpenAPI

````yaml /openapi.json get /v1/sellers/skills
openapi: 3.1.0
info:
  title: AgentPowers API
  description: Paid marketplace for Claude Code skills and agents
  version: 0.1.0
servers:
  - url: https://api.agentpowers.ai
    description: Production
security: []
paths:
  /v1/sellers/skills:
    get:
      tags:
        - sellers
      summary: List My Skills
      description: List current seller's published skills with revenue data.
      operationId: list_my_skills_v1_sellers_skills_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SellerSkillsResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    SellerSkillsResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/SellerSkillItem'
          type: array
          title: Items
        total:
          type: integer
          title: Total
      type: object
      required:
        - items
        - total
      title: SellerSkillsResponse
    SellerSkillItem:
      properties:
        slug:
          type: string
          title: Slug
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        category:
          anyOf:
            - type: string
            - type: 'null'
          title: Category
        type:
          anyOf:
            - type: string
            - type: 'null'
          title: Type
        price_cents:
          type: integer
          title: Price Cents
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        version:
          anyOf:
            - type: string
            - type: 'null'
          title: Version
        security_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Security Status
        download_count:
          type: integer
          title: Download Count
          default: 0
        created_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Created At
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
          title: Updated At
        status:
          type: string
          title: Status
        revenue_cents:
          type: integer
          title: Revenue Cents
        sales_count:
          type: integer
          title: Sales Count
      type: object
      required:
        - slug
        - title
        - price_cents
        - status
        - revenue_cents
        - sales_count
      title: SellerSkillItem
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: >-
        Provide a Clerk JWT or a long-lived CLI token (prefix `ap_cli_`).  Pass
        as `Authorization: Bearer <token>`.

````