SearchFIT

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

  1. Install and activate SearchFIT
  2. Go to SearchFIT in your admin menu
  3. Copy your API Key and Webhook URL
  4. 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

  1. Go to Plugins > Add New in your WordPress admin
  2. Search for SearchFIT
  3. Click Install Now and then Activate

Manual Installation

  1. Download the plugin zip file
  2. Go to Plugins > Add New > Upload Plugin
  3. Choose the zip file and click Install Now
  4. Activate the plugin

After Activation

  1. Navigate to SearchFIT in your WordPress admin menu
  2. Your API credentials are automatically generated
  3. Copy the API Key and Webhook URL
  4. 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_url parameter with a public image URL, or use the advanced featured_image object 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 meta parameter to set custom meta fields. All fields are prefixed with searchfit_ 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.

Contributors

Translate “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