HuxxConnect
HuxxConnect is a modern WordPress plugin for connecting your site to external REST APIs — no coding required. Set up your APIs, configure endpoints, and display the returned data anywhere on your site using shortcodes or PHP template functions.
Built with security and portability in mind, HuxxConnect encrypts all stored API credentials with AES-256-GCM, provides a clean Alpine.js-powered admin interface, and offers 25+ hooks for developers who need to extend or customize behavior.
Features
- Unlimited APIs and endpoints — connect to as many external APIs as you need
- All major HTTP methods — GET, POST, PUT, PATCH, DELETE
- Flexible authentication — Bearer Token, API Key (header or query), Basic Auth, custom hook-based auth. WordPress constants and environment variables can be used for any credential value.
- Secure credential storage — AES-256-GCM encryption with portable key management and environment lock protection
- Shortcodes and template functions — display API data anywhere with
[huxx_api]orhuxx_api()in your theme - Built-in endpoint testing — test API calls directly from the admin panel with live request/response preview
- Smart caching — automatic cache detection (object cache or transients) with per-endpoint TTL
- Request logging — built-in log viewer with filterable request history
- Import and export — migrate from WPGetAPI, share configs between sites, or import from Postman collections (v2.1) with HuxxConnect Pro
- WPGetAPI compatibility — optional compatibility layer maps WPGetAPI hooks, functions, and shortcodes for seamless migration
- Dynamic path variables — use
{post_id},{0},{1}in endpoint paths with runtime substitution - Multipart/form-data support — upload files to APIs with WordPress Media Library integration
- Query, header, and body parameters — configure static parameters in the admin or pass dynamic values at runtime
- Per-API controls — enable/disable individual APIs, configure SSL verification, set custom timeouts
- WCAG AA accessible admin UI — keyboard navigation, ARIA attributes, focus management, reduced motion support
- Mobile-responsive admin — fully usable on tablets and phones
- Developer-friendly — 25+ filters and actions, PSR-4 autoloading, clean architecture
Shortcode Usage
[huxx_api api_id="my_api" endpoint_id="get_users"]
[huxx_api api_id="weather" endpoint_id="forecast" query_variables="city=London"]
Template Function Usage
<?php $data = huxx_api( 'my_api', 'get_users' ); ?>
<?php $forecast = huxx_api( 'weather', 'forecast', array( 'query_variables' => array( 'city' => 'London' ) ) ); ?>
Extending HuxxConnect
HuxxConnect Pro adds advanced features for professional workflows:
- Post Creator — automatically create and sync WordPress posts from API response data with field mapping, taxonomy assignment, scheduling, and preview
- Remote Unlock — securely migrate encrypted credentials between environments (staging, production) without re-entering API keys
- Pagination — cursor-based, page number, and offset pagination for endpoints that return paginated results
- Results filtering — filter API response data with rules before syncing to WordPress
- HTML formatter — display API data as styled HTML tables with number formatting support
- Postman Import — import collections from Postman (v2.1 format) with automatic mapping of authentication, headers, query parameters, and body configuration
- OAuth 2.0 authentication — connect to APIs that require OAuth 2.0 authorization flows (coming soon)
- Page builder integrations — dedicated widgets and modules for Elementor, Beaver Builder, and more (coming soon)
Third-Party Service Usage
HuxxConnect does not phone home, collect telemetry, or send any data to Huxx & Co or any third party.
When you configure an API connection in HuxxConnect, the plugin makes HTTP requests to the external API endpoints that you specify. All API URLs, credentials, headers, and request parameters are configured entirely by you. These requests are made using the WordPress HTTP API (wp_safe_remote_request()), which provides built-in SSRF protection.
Google Favicon Service: When you add or import an API, HuxxConnect attempts to fetch a favicon for the API’s base URL. As part of this process, the plugin may make a server-side request to Google’s S2 favicon service (https://www.google.com/s2/favicons) to retrieve a high-resolution icon. The only data sent is the API’s root domain name (e.g., api.example.com). No user data, credentials, or site information is transmitted. This service is subject to Google’s Terms of Service and Privacy Policy.
You are responsible for reviewing the terms of service and privacy policies of any external APIs you connect to through this plugin.
