> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/resources/projects/createprojectrss-method.md).

# CreateProjectRss Method

## Description

Creates an RSS feed for a project. If an RSS feed already exists, the existing RSS feed information will be returned.

## HTTP Request

`POST https://api.skeddly.com/api/Projects/<id>/Rss`

## URL Parameters

### Id

ID of the project.

Type: `string`

Required: Yes

## Body

The body of the request is empty.

## Returns

A [ProjectRssFeed](/data-types/projectrssfeed-object.md) object.

## &#x20;Sample Request

{% tabs %}
{% tab title="HTTP" %}

```http
POST /api/Projects/proj-12345678/Rss HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X POST "https://api.skeddly.com/api/Projects/proj-12345678/Rss" \
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}
{% endtabs %}

## Sample Response

```javascript
{
    "status": "active",
    "feedUrl": "https://rss.skeddly.com/"
}
```
