Skip to main content
Welcome to the Monument API documentation for integration purposes. This guide provides an overview of how to use the Integration API effectively.

Getting Started

  1. Obtain API Access: Ensure you have the necessary API key and credentials to authenticate your requests.
  2. Review the OpenAPI Specification: Familiarize yourself with the Integration API Reference to understand the API’s capabilities.
  3. Set Up Your Environment: Use your preferred programming language and tools to make HTTP requests to the API.

Key Features

  • Authentication: Secure your API requests using an API key in the x-api-key header.
  • Endpoint Access: Interact with various endpoints to retrieve or manipulate data.
  • Data Synch: Synch with up to date data from the Monument platform for facilities, tenants, units, rentals and manage tenant coverage

Example Usage

Authenticate API Requests

To authenticate your API requests, include your API key in the x-api-key header as shown below.

Example Request

curl -X GET "https://api.monument.com/api/thestoragehaven/portfolios/v1/facilities/uuids?updatedAt.lessOrEqual=2024-12-29T00:00:24.245Z&limit=10" \
    -H "x-api-key: YOUR_API_KEY"

Example Response

[
    "fac123e4-5678-90ab-cdef-1234567890ab",
    "fac234e5-6789-01bc-defa-2345678901bc",
    "fac345e6-7890-12cd-efab-3456789012cd"
]