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

# Get Skill Submission

> Get a specific skill submission with full details

## Overview

Returns the full details of a skill submission, including the SKILL.md content and all files. Users can only view their own submissions.

**Auth:** Requires JWT authentication.

## Path Parameters

<ParamField path="submission_id" type="string" required>
  Submission UUID
</ParamField>

## Response

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

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

<ResponseField name="skill_description" type="string">
  Parsed description from SKILL.md frontmatter
</ResponseField>

<ResponseField name="skill_md_content" type="string">
  Full SKILL.md markdown content
</ResponseField>

<ResponseField name="scripts" type="array">
  Script files
</ResponseField>

<ResponseField name="reference_files" type="array">
  Reference files
</ResponseField>

<ResponseField name="assets" type="array">
  Asset files
</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
</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/sub_abc123" \
    -H "Authorization: Bearer YOUR_JWT"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "id": "sub_abc123",
    "skill_name": "pdf-processing",
    "skill_description": "Extract and process PDF documents",
    "skill_md_content": "---\ndescription: Extract and process PDF documents\n---\n\n# PDF Processing\n...",
    "scripts": [
      {"name": "extract.py", "content": "..."}
    ],
    "reference_files": [],
    "assets": [],
    "status": "pending",
    "submitted_at": "2026-02-24T12:00:00Z",
    "reviewed_at": null,
    "reviewer_notes": null,
    "skill_id": null
  }
  ```
</ResponseExample>
