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

# List My Skill Submissions

> List all skill submissions for the current user

## Overview

Returns all skill submissions created by the authenticated user. Optionally filter by status.

**Auth:** Requires JWT authentication.

## Query Parameters

<ParamField query="status" type="string">
  Filter by submission status: `"pending"`, `"approved"`, or `"rejected"`
</ParamField>

## Response

Returns an array of submission objects.

<ResponseField name="id" type="string">
  Submission UUID
</ResponseField>

<ResponseField name="skill_name" type="string">
  Skill name
</ResponseField>

<ResponseField name="status" type="string">
  `"pending"`, `"approved"`, or `"rejected"`
</ResponseField>

<ResponseField name="submitted_at" type="string">
  ISO 8601 timestamp
</ResponseField>

<ResponseField name="reviewed_at" type="string">
  ISO 8601 timestamp (null if not yet reviewed)
</ResponseField>

<ResponseField name="reviewer_notes" type="string">
  Notes from the reviewer (null if not yet reviewed)
</ResponseField>

<ResponseField name="skill_id" type="string">
  Created skill UUID (set when approved)
</ResponseField>

## Example

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.danubeai.com/v1/skill-submissions/my?status=pending" \
    -H "Authorization: Bearer YOUR_JWT"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  [
    {
      "id": "sub_abc123",
      "skill_name": "pdf-processing",
      "status": "pending",
      "submitted_at": "2026-02-24T12:00:00Z",
      "reviewed_at": null,
      "reviewer_notes": null,
      "skill_id": null
    }
  ]
  ```
</ResponseExample>
