Endpoints
- Repository
- Plugins
- Plugin Versions
- Themes
- Theme Versions
Themes
List all themes
Retrieve the list of plugins published in the organization. The response format is compatible with official Wordpress Repository format.
GET
/
themes
Copy
curl --request GET \
--url https://registry.wp-content.io/themes \
--header 'X-API-KEY: <api-key>'
Copy
{
"info": {
"page": 1,
"pages": 1,
"results": 1
},
"themes": [
{
"name": "My Theme",
"slug": "my-theme",
"version": "1.0.0",
"preview_url": "",
"author": {
"user_nicename": "acme",
"profile": "",
"avatar": "",
"display_name": "ACME",
"author": "ACME",
"author_url": "https://example.com"
},
"tags": [],
"screenshot_url": "https://placehold.co/1200x900",
"rating": 0,
"num_ratings": 0,
"downloaded": 0,
"homepage": "",
"description": "",
"requires": null,
"requires_php": null,
"download_link": "https://wp-content-staging.s3.fr-par.scw.cloud/artifacts/themes/my-theme/my-theme-1.0.0-86869156b3b9fbffd6e69fa6cf49452a.zip",
"last_updated": "2025-06-11",
"last_updated_time": "2025-06-11 11:39:21",
"creation_time": "2025-06-11 11:39:18",
"is_commercial": false,
"external_support_url": false,
"is_community": false,
"external_repository_url": ""
}
]
}
Authorizations
Response
200 - application/json
OK
The response is of type object
.
Copy
curl --request GET \
--url https://registry.wp-content.io/themes \
--header 'X-API-KEY: <api-key>'
Copy
{
"info": {
"page": 1,
"pages": 1,
"results": 1
},
"themes": [
{
"name": "My Theme",
"slug": "my-theme",
"version": "1.0.0",
"preview_url": "",
"author": {
"user_nicename": "acme",
"profile": "",
"avatar": "",
"display_name": "ACME",
"author": "ACME",
"author_url": "https://example.com"
},
"tags": [],
"screenshot_url": "https://placehold.co/1200x900",
"rating": 0,
"num_ratings": 0,
"downloaded": 0,
"homepage": "",
"description": "",
"requires": null,
"requires_php": null,
"download_link": "https://wp-content-staging.s3.fr-par.scw.cloud/artifacts/themes/my-theme/my-theme-1.0.0-86869156b3b9fbffd6e69fa6cf49452a.zip",
"last_updated": "2025-06-11",
"last_updated_time": "2025-06-11 11:39:21",
"creation_time": "2025-06-11 11:39:18",
"is_commercial": false,
"external_support_url": false,
"is_community": false,
"external_repository_url": ""
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.