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

# Delete Post

> DELETE /v1/social/posts/:id — Delete a social post.

<ParamField path="id" type="string" required>
  UUID of the post to delete.
</ParamField>

<RequestExample>
  ```bash theme={"theme":"css-variables"}
  curl -X DELETE https://api.usenaive.ai/v1/social/posts/post-uuid \
    -H "Authorization: Bearer nv_sk_live_..."
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={"theme":"css-variables"}
  {
    "deleted": true,
    "post_id": "post-uuid"
  }
  ```
</ResponseExample>
