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

# Get Category Detail

> Get single category with full metadata and skills.



## OpenAPI

````yaml /openapi.json get /v1/categories/{slug}
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/categories/{slug}:
    get:
      tags:
        - search
      summary: Get Category Detail
      description: Get single category with full metadata and skills.
      operationId: get_category_detail_v1_categories__slug__get
      parameters:
        - name: slug
          in: path
          required: true
          schema:
            type: string
            title: Slug
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 20
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CategoryDetailResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CategoryDetailResponse:
      properties:
        category:
          type: string
          title: Category
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        icon:
          anyOf:
            - type: string
            - type: 'null'
          title: Icon
        sample_keywords:
          type: string
          title: Sample Keywords
          default: ''
        count:
          type: integer
          title: Count
        skills:
          items:
            $ref: '#/components/schemas/CategorySkillItem'
          type: array
          title: Skills
      type: object
      required:
        - category
        - count
        - skills
      title: CategoryDetailResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CategorySkillItem:
      properties:
        slug:
          type: string
          title: Slug
        title:
          type: string
          title: Title
        description:
          anyOf:
            - type: string
            - type: 'null'
          title: Description
        price_cents:
          type: integer
          title: Price Cents
        currency:
          anyOf:
            - type: string
            - type: 'null'
          title: Currency
        security_status:
          anyOf:
            - type: string
            - type: 'null'
          title: Security Status
      type: object
      required:
        - slug
        - title
        - price_cents
      title: CategorySkillItem
    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

````