Niki API Client
This Niki API Client is an interface to the Niki house-database API, for easy usage in Wordpress sites. For example using a template.
Next Milestone 10
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 1 of 1| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| niki rest api | 1 | — | Tag | 14 hours ago |
Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 0.3.1
- Last Updated
- Mar 18, 2019
- Requires WP
- 3.0.1+
- Tested Up To
- 4.9
- PHP Version
- N/A
- Author
- Fundament All Media
Support & Rating
- Rating
- ★ ☆ ☆ ☆ ☆ 1
- Reviews
- 0
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowFrequently Asked Questions
Common questions about Niki API Client
require_once $niki->get_plugin_path() . "examples/niki-functions.php";
niki_show_woningtype('TBIGEN_79DBBC06-518B-4591-882E-EE63359CCBA8','TBIGEN_4D14999B-87DB-4874-ACB9-B3CBD87B2936');
?>
In this example, the first parameter is the Niki project id, and the second parameter is the Niki housetype id.
How do I list the housetypes in my selected projects?
Include the niki-functions.php in your page template and call the listing example function like so:
<?
require_once $niki->get_plugin_path() . "examples/niki-functions.php";
niki_show_aanbod();
?>
This will generate a listing of all housetypes in the projects selected in the admin configuration.
How do i render a default interest form?
Include the niki-functions.php in your page template (if you dit not do already so), and show the form:
<?
require_once $niki->get_plugin_path() . "examples/niki-functions.php";
niki_show_interesse();
?>
// example project resource
$resource = '/projects/34/TBIGEN_79DBBC06-518B-4591-882E-EE63359CCBA8' ;
$myProject = $niki->get_niki_resource($resource, array()); // empty parameter array, not needed here
// display the contents of $myProject
var_dump($myProject);
?>