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

# Verify Token

> Verify Clerk JWT and return user info.



## OpenAPI

````yaml /openapi.json post /v1/auth/verify
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/auth/verify:
    post:
      tags:
        - auth
      summary: Verify Token
      description: Verify Clerk JWT and return user info.
      operationId: verify_token_v1_auth_verify_post
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/VerifyResponse'
      security:
        - BearerAuth: []
components:
  schemas:
    VerifyResponse:
      properties:
        verified:
          type: boolean
          title: Verified
        user_id:
          type: string
          title: User Id
      type: object
      required:
        - verified
        - user_id
      title: VerifyResponse
  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>`.

````