podcastindexjs
Version:
client-side JS library for interacting with the Podcast Index API
63 lines (62 loc) • 1.53 kB
JSON
{
"title": "`/api/1.0/recent/newfeeds` - This call returns every new feed added to the index over the past 24 hours in reverse chronological order.",
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/ApiResponse.NewFeedStatus"
},
"feeds": {
"type": "array",
"items": {
"$ref": "#/definitions/PIApiRecentNewFeed"
}
},
"count": {
"type": "number"
},
"max": {
"type": "string"
},
"description": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["count", "description", "feeds", "max", "status"],
"definitions": {
"ApiResponse.NewFeedStatus": {
"enum": ["confirmed", "pending", "true"],
"type": "string"
},
"PIApiRecentNewFeed": {
"description": "from recentNewFeeds",
"type": "object",
"properties": {
"id": {
"type": "number"
},
"url": {
"type": "string"
},
"timeAdded": {
"type": "number"
},
"status": {
"$ref": "#/definitions/ApiResponse.NewFeedStatus"
},
"contentHash": {
"type": "string"
},
"language": {
"type": "string"
},
"image": {
"type": "string"
}
},
"additionalProperties": false,
"required": ["contentHash", "id", "image", "language", "status", "timeAdded", "url"]
}
},
"$schema": "http://json-schema.org/draft-07/schema#"
}