Public
Documentation Settings

eventplanner.net API

The eventplanner.net API lets you build, enrich, integrate, ... websites and applications with eventplanner.net content including reviews. Our API is REST based with XML responses. The documentation for our API can be found below. You can view code examples of the shell commands in the dark area to the right.

Review API

To access the eventplanner.net API, you will need an API key. Contact us to obtain your API key.

Pass your obtained API key as a header with name X-API-KEY.

X-API-KEY: 0011223344556677889900aabbccddeeff001122

Attention! You must replace 0011223344556677889900aabbccddeeff001122 with your personal API key.

Calling the API with an incorrect API header will either result in a "Missing Authentication Token" message or an "Unauthorized" message.

AUTHORIZATIONAPI Key
Key

X-API-KEY

Value

•••••••

GETPages

https://api.eventplanner.net/pages/
AUTHORIZATIONAPI Key
This request is using API Key from folderReview API
HEADERS
X-API-KEY

•••••••

Example Request
curl
curl --location 'https://api.eventplanner.net/pages/' \
--header 'X-API-KEY: •••••••'
Example Response
<pages>
    <page>
        <id>1234</id>
        <name>Your page name</name>
    </page>
    <page>
        <id>1235</id>
        <name>Your other page name</name>
    </page>
</pages>
No response headers
This request doesn't return any response headers

GETReviews

https://api.eventplanner.net/pages/:page_id/
AUTHORIZATIONAPI Key
This request is using API Key from folderReview API
HEADERS
X-API-KEY

•••••••

PATH VARIABLES
page_id

1234

Example Request
curl
curl --location 'https://api.eventplanner.net/pages/1234' \
--header 'X-API-KEY: •••••••'
Example Response
<?xml version="1.0" encoding="UTF-8"?>
<page>
    <id>1234</id>
    <name>Your page name</name>
    <url>https://www.eventplanner.net/directory/1234_your-page-name.html</url>
    <ratings>
        <eventplanner max="10">9.5</eventplanner>
    </ratings>
    <reviews total="4" />
</page>
No response headers
This request doesn't return any response headers