WordPress is the world’s leading open-source content management system, making it easy to publish and manage websites, blogs, and all types of online content. With WordPress, you can create and update posts or pages, organize your content with categories and tags, manage media files, moderate comments, and handle user accounts—allowing you to run everything from personal blogs to complex business sites.
Sim’s integration with WordPress lets your agents automate essential website tasks. You can programmatically create new blog posts with specific titles, content, categories, tags, and featured images. Updating existing posts—such as changing their content, title, or publishing status—is straightforward. You can also publish or save content as drafts, manage static pages, work with media uploads, oversee comments, and assign content to relevant organizational taxonomies.
By connecting WordPress to your automations, Sim empowers your agents to streamline content publishing, editorial workflows, and everyday site management—helping you keep your website fresh, organized, and secure without manual effort.
Integrate with WordPress to create, update, and manage posts, pages, media, comments, categories, tags, and users. Supports WordPress.com sites via OAuth and self-hosted WordPress sites using Application Passwords authentication.
Create a new blog post in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
title | string | Yes | Post title |
content | string | No | Post content (HTML or plain text) |
status | string | No | Post status: publish, draft, pending, private, or future |
excerpt | string | No | Post excerpt |
categories | string | No | Comma-separated category IDs |
tags | string | No | Comma-separated tag IDs |
featuredMedia | number | No | Featured image media ID |
slug | string | No | URL slug for the post |
| Parameter | Type | Description |
|---|
post | object | The created post |
Update an existing blog post in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
postId | number | Yes | The ID of the post to update |
title | string | No | Post title |
content | string | No | Post content (HTML or plain text) |
status | string | No | Post status: publish, draft, pending, private, or future |
excerpt | string | No | Post excerpt |
categories | string | No | Comma-separated category IDs |
tags | string | No | Comma-separated tag IDs |
featuredMedia | number | No | Featured image media ID |
slug | string | No | URL slug for the post |
| Parameter | Type | Description |
|---|
post | object | The updated post |
Delete a blog post from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
postId | number | Yes | The ID of the post to delete |
force | boolean | No | Bypass trash and force delete permanently |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the post was deleted |
post | object | The deleted post |
Get a single blog post from WordPress.com by ID
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
postId | number | Yes | The ID of the post to retrieve |
| Parameter | Type | Description |
|---|
post | object | The retrieved post |
List blog posts from WordPress.com with optional filters
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of posts per page (default: 10, max: 100) |
page | number | No | Page number for pagination |
status | string | No | Post status filter: publish, draft, pending, private |
author | number | No | Filter by author ID |
categories | string | No | Comma-separated category IDs to filter by |
tags | string | No | Comma-separated tag IDs to filter by |
search | string | No | Search term to filter posts |
orderBy | string | No | Order by field: date, id, title, slug, modified |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
posts | array | List of posts |
Create a new page in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
title | string | Yes | Page title |
content | string | No | Page content (HTML or plain text) |
status | string | No | Page status: publish, draft, pending, private |
excerpt | string | No | Page excerpt |
parent | number | No | Parent page ID for hierarchical pages |
menuOrder | number | No | Order in page menu |
featuredMedia | number | No | Featured image media ID |
slug | string | No | URL slug for the page |
| Parameter | Type | Description |
|---|
page | object | The created page |
Update an existing page in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
pageId | number | Yes | The ID of the page to update |
title | string | No | Page title |
content | string | No | Page content (HTML or plain text) |
status | string | No | Page status: publish, draft, pending, private |
excerpt | string | No | Page excerpt |
parent | number | No | Parent page ID for hierarchical pages |
menuOrder | number | No | Order in page menu |
featuredMedia | number | No | Featured image media ID |
slug | string | No | URL slug for the page |
| Parameter | Type | Description |
|---|
page | object | The updated page |
Delete a page from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
pageId | number | Yes | The ID of the page to delete |
force | boolean | No | Bypass trash and force delete permanently |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the page was deleted |
page | object | The deleted page |
Get a single page from WordPress.com by ID
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
pageId | number | Yes | The ID of the page to retrieve |
| Parameter | Type | Description |
|---|
page | object | The retrieved page |
List pages from WordPress.com with optional filters
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of pages per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
status | string | No | Page status filter: publish, draft, pending, private |
parent | number | No | Filter by parent page ID |
search | string | No | Search term to filter pages |
orderBy | string | No | Order by field: date, id, title, slug, modified, menu_order |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
pages | array | List of pages |
Upload a media file (image, video, document) to WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
file | string | Yes | Base64 encoded file data or URL to fetch file from |
filename | string | Yes | Filename with extension (e.g., image.jpg) |
title | string | No | Media title |
caption | string | No | Media caption |
altText | string | No | Alternative text for accessibility |
description | string | No | Media description |
| Parameter | Type | Description |
|---|
media | object | The uploaded media item |
Get a single media item from WordPress.com by ID
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
mediaId | number | Yes | The ID of the media item to retrieve |
| Parameter | Type | Description |
|---|
media | object | The retrieved media item |
List media items from the WordPress.com media library
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of media items per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
search | string | No | Search term to filter media |
mediaType | string | No | Filter by media type: image, video, audio, application |
mimeType | string | No | Filter by specific MIME type (e.g., image/jpeg) |
orderBy | string | No | Order by field: date, id, title, slug |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
media | array | List of media items |
Delete a media item from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
mediaId | number | Yes | The ID of the media item to delete |
force | boolean | No | Force delete (media has no trash, so deletion is permanent) |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the media was deleted |
media | object | The deleted media item |
Create a new comment on a WordPress.com post
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
postId | number | Yes | The ID of the post to comment on |
content | string | Yes | Comment content |
parent | number | No | Parent comment ID for replies |
authorName | string | No | Comment author display name |
authorEmail | string | No | Comment author email |
authorUrl | string | No | Comment author URL |
| Parameter | Type | Description |
|---|
comment | object | The created comment |
List comments from WordPress.com with optional filters
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of comments per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
postId | number | No | Filter by post ID |
status | string | No | Filter by comment status: approved, hold, spam, trash |
search | string | No | Search term to filter comments |
orderBy | string | No | Order by field: date, id, parent |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
comments | array | List of comments |
Update a comment in WordPress.com (content or status)
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
commentId | number | Yes | The ID of the comment to update |
content | string | No | Updated comment content |
status | string | No | Comment status: approved, hold, spam, trash |
| Parameter | Type | Description |
|---|
comment | object | The updated comment |
Delete a comment from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
commentId | number | Yes | The ID of the comment to delete |
force | boolean | No | Bypass trash and force delete permanently |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the comment was deleted |
comment | object | The deleted comment |
Create a new category in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
name | string | Yes | Category name |
description | string | No | Category description |
parent | number | No | Parent category ID for hierarchical categories |
slug | string | No | URL slug for the category |
| Parameter | Type | Description |
|---|
category | object | The created category |
List categories from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of categories per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
search | string | No | Search term to filter categories |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
categories | array | List of categories |
Create a new tag in WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
name | string | Yes | Tag name |
description | string | No | Tag description |
slug | string | No | URL slug for the tag |
| Parameter | Type | Description |
|---|
tag | object | The created tag |
List tags from WordPress.com
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of tags per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
search | string | No | Search term to filter tags |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
tags | array | List of tags |
Get information about the currently authenticated WordPress.com user
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
| Parameter | Type | Description |
|---|
user | object | The current user |
List users from WordPress.com (requires admin privileges)
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
perPage | number | No | Number of users per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
search | string | No | Search term to filter users |
roles | string | No | Comma-separated role names to filter by |
order | string | No | Order direction: asc or desc |
| Parameter | Type | Description |
|---|
users | array | List of users |
Get a specific user from WordPress.com by ID
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
userId | number | Yes | The ID of the user to retrieve |
| Parameter | Type | Description |
|---|
user | object | The retrieved user |
Search across all content types in WordPress.com (posts, pages, media)
| Parameter | Type | Required | Description |
|---|
siteId | string | Yes | WordPress.com site ID or domain (e.g., 12345678 or mysite.wordpress.com) |
query | string | Yes | Search query |
perPage | number | No | Number of results per request (default: 10, max: 100) |
page | number | No | Page number for pagination |
type | string | No | Filter by content type: post, page, attachment |
subtype | string | No | Filter by post type slug (e.g., post, page) |
| Parameter | Type | Description |
|---|
results | array | Search results |
- Category:
tools
- Type:
wordpress