Add a Creator Feed to Taddy’s Directory

When you add your creator feed to Taddy’s Directory, we notify all supported apps that a new creator feed has been released.

How to add a creator to Taddy

  1. Use the REST endpoint: https://taddy.org/feeds/add/creator (POST)
  1. Add your X-USER-ID and X-API-KEY values to the headers (see Intro Guide for instructions on how to get your API Key and User ID)
{
	"X-USER-ID": 7,
	"X-API-KEY": "96c5007c18858e86d..."
}
3. Add sssUrl (required) to the data being passed with the POST request.
{
	"sssUrl": "https://example.com/feeds/sss/creator/123",
}
 
You will get back one of the following responses:
Success: On a successful response you get back a status and the uuid for the added creator.
{
	"status": "success",
	"uuid":  "d682a935-ad2d-46ee-a0ac-139198b83bcc"
}
Error: When we encounter an error adding a new creator to Taddy. We send back a string with the error message.
`Could not add SSS Feed to Taddy`

Example:

curl -X POST \
https://taddy.org/feeds/add/creator \
-H "Content-Type: application/json" \
-H "X-USER-ID: 7" \
-H "X-API-KEY: 96c5007c18858e86d..." \
-d '{ "sssUrl": "https://example.com/feeds/sss/creator/123" }'
 
Notes:
  • Once you send a request: 1) We immediately add the creator feed to Taddy’s Directory and 2) Queue up a job to parse the feed. This second step may take up to 15 mins but is usually much sooner.
  • Trying to re-add a creator feed that has already been added to our directory will return a successful response and return the uuid for the already added creator feed.
 
👋
If you are new to using Taddy’s API, Get Started with our 🤖 Intro to Taddy’s API.
 
More Links:
💳Pricing📝Terms of Service🧑‍💻Developer Policy