Description
SearchFIT β AI-Powered Content Automation for WordPress
The easiest way to automate content creation with AI tools π
β
β
β
β
β
SearchFIT provides a secure webhook API that allows you to programmatically create WordPress posts from AI assistants, automation tools, or custom applications. Perfect for AI-powered content workflows with ChatGPT, Claude, Perplexity, and other AI systems.
Why SearchFIT?
In the age of AI, content creation is evolving rapidly. Answer Engine Optimization (AEO) and Generative Engine Optimization (GEO) are becoming essential for modern SEO strategies. SearchFIT bridges the gap between your AI content generation tools and your WordPress website.
π₯ Key Features
Secure API Authentication
- Auto-generated API Keys β Cryptographically secure keys generated automatically
- One-click Regeneration β Instantly refresh your API key if compromised
- Multiple Auth Methods β Support for both custom header and Bearer token authentication
Full Content Control
- Create Complete Posts β Title, content, excerpt, and more
- Smart Categorization β Auto-create categories or use existing ones
- Tag Management β Automatically assign tags to your posts
- Draft Mode β Create posts as drafts, pending review, or publish immediately
Advanced Image Handling
- Featured Images β Automatically download and attach featured images
- Content Images β Process inline images with proper WordPress integration
- SEO-Optimized β Support for alt text, captions, and image metadata
- Placeholder System β Intelligent image replacement within content
Developer-Friendly
- REST API β Modern WordPress REST API integration
- Comprehensive Documentation β In-app documentation with code examples
- Health Check Endpoint β Verify API connectivity before sending content
- Activity Logging β Track all webhook submissions
π Perfect For
β AI Content Generation β Use with ChatGPT, Claude, Perplexity, or any AI
β Answer Engine Optimization (AEO) β Create content optimized for AI search
β Generative Engine Optimization (GEO) β Stay ahead in generative search results
β Content Automation β Build automated content pipelines
β Headless WordPress β External CMS and decoupled setups
β Content Syndication β Automated content distribution
β Marketing Automation β Connect with Zapier, Make, n8n, and more
β Custom Applications β Any system that can make HTTP requests
π― Use Cases
Bloggers & Content Creators
Automate your content workflow by connecting AI writing tools directly to WordPress.
Digital Agencies
Scale content production across multiple client sites with programmatic publishing.
eCommerce Stores
Generate product descriptions, blog posts, and SEO content automatically.
News & Media Sites
Rapidly publish AI-assisted articles while maintaining editorial control with draft mode.
π Security First
Security is our top priority. SearchFIT uses:
- Cryptographically secure API key generation
- Timing-safe comparison to prevent timing attacks
- WordPress nonce verification for admin actions
- Proper capability checks for all operations
- Sanitization and validation of all inputs
π Quick Start
- Install and activate SearchFIT
- Go to SearchFIT in your admin menu
- Copy your API Key and Webhook URL
- Send a POST request with your content
That’s it! Your AI-generated content flows directly into WordPress.
API Reference
For complete API documentation with code examples in multiple languages, visit searchfit.ai/docs.
Quick Example:
curl -X POST "https://yoursite.com/wp-json/searchfit/v1/articles" \
-H "Content-Type: application/json" \
-H "X-SearchFIT-API-Key: YOUR_API_KEY" \
-d '{
"title": "My AI-Generated Article",
"content": "<p>Your content here...</p>",
"status": "draft",
"categories": ["AI", "Technology"],
"tags": ["ai-content", "automation"]
}'
Privacy Policy
SearchFIT does not collect or transmit any personal data. All operations are performed locally on your WordPress installation. API keys and webhook logs are stored in your WordPress database and are never transmitted to external servers.
Screenshots

Dashboard Overview β Your API credentials at a glance. Copy your API key and webhook URL with a single click. 
API Documentation Panel β Interactive documentation with code examples and endpoint reference right in your WordPress admin. 
Endpoint Reference β View all available endpoints, HTTP methods, and their descriptions.
Installation
Automatic Installation
- Go to Plugins > Add New in your WordPress admin
- Search for SearchFIT
- Click Install Now and then Activate
Manual Installation
- Download the plugin zip file
- Go to Plugins > Add New > Upload Plugin
- Choose the zip file and click Install Now
- Activate the plugin
After Activation
- Navigate to SearchFIT in your WordPress admin menu
- Your API credentials are automatically generated
- Copy the API Key and Webhook URL
- Start sending content via the API!
FAQ
-
How do I get my API key?
-
After activating the plugin, go to SearchFIT in your WordPress admin menu. Your API key is displayed there and can be copied with one click. The key is automatically generated during plugin activation.
-
Can I regenerate my API key?
-
Yes! Click “Regenerate API Key” on the settings page. Please note that the old key will stop working immediately, so update your integrations before regenerating.
-
What post statuses are supported?
-
You can create posts with the following statuses:
*draftβ Saved but not published (default)
*pendingβ Awaiting editorial review
*publishβ Published immediately -
How do featured images work?
-
Include a
featured_image_urlparameter with a public image URL, or use the advancedfeatured_imageobject with metadata. The plugin will download the image, add it to your Media Library, and set it as the featured image. -
Is the API secure?
-
Absolutely! All requests require a valid API key. Keys are auto-generated using PHP’s
random_bytes()function for cryptographic security. The plugin uses timing-safe comparison to prevent timing attacks. -
Can I use this with AI tools?
-
Yes! SearchFIT is specifically designed for AI-powered workflows. Use it with:
* ChatGPT & OpenAI
* Claude (Anthropic)
* Perplexity
* Google Gemini
* Any AI or automation tool that can make HTTP requests -
What happens to categories that don’t exist?
-
If you specify a category name that doesn’t exist, SearchFIT will automatically create it for you. You can also use existing category IDs.
-
Does it support custom post types?
-
Currently, SearchFIT creates standard WordPress posts. Support for custom post types is planned for a future release.
-
Can I set custom meta fields?
-
Yes! Use the
metaparameter to set custom meta fields. All fields are prefixed withsearchfit_to avoid conflicts. -
Is there a rate limit?
-
SearchFIT doesn’t impose rate limits. However, your hosting provider may have their own limits on API requests.
-
Where can I get support?
-
Visit searchfit.ai for documentation and support resources. You can also use the WordPress.org support forum.
Reviews
There are no reviews for this plugin.
Contributors & Developers
“SearchFIT” is open source software. The following people have contributed to this plugin.
ContributorsTranslate “SearchFIT” into your language.
Interested in development?
Browse the code, check out the SVN repository, or subscribe to the development log by RSS.
Changelog
1.1.0
- π Complete CRUD API – List, Read, Create, and Update articles
- β GET /articles endpoint – List all articles with filtering and pagination
- β GET /articles/{id} endpoint – Get single article by ID
- β PUT/PATCH /articles/{id} endpoint – Update existing articles
- β Advanced filtering – Filter by status, author, search terms
- β Sorting options – Sort by date, modified, title, author
- β Pagination support – Navigate large content libraries
- β Partial updates – Update only the fields you specify
- β Change tracking – See exactly what was updated
- β Featured image by attachment_id – Use existing media library images
- β Custom meta fields support – Add any metadata to posts
- β Default author settings – Configure default post author
- β Enhanced admin interface – Display all CRUD endpoints
- β WordPress revisions support – Track all changes
- β 100% test coverage – Validated with 20 blog posts
1.0.0
- π Initial release
- β Webhook API for article creation
- β Secure API key authentication
- β Featured image support with metadata
- β Content image processing with placeholders
- β Categories and tags support
- β Draft, pending, and publish status options
- β Health check endpoint
- β Activity logging
- β Beautiful admin interface with copy-to-clipboard functionality
