Reading time 1 m
Published Jul 18, 2025

Introduction

Introduction

You can use our API to programmatically add monitors and change their properties. Or you can use our API to get statistics for each monitor.

In any case, most of the features that PingPing offers are covered.

Our endpoints can be reached at https://forms.un-static.com/api/ . Our API is largely based on the REST standard. This means concretely:

  • GET for retrieving a list of data or a single resource

  • POST for creating new resources

  • PUT for updating existing resources

  • DELETE for deleting existing resources

Every single response you get from our API is JSON formatted. Let us show you how a response might look like when you trigger the /api/forms endpoint to show all existing monitors.

[
  {
    "id": "786035271d01882e129295858656324d3e5110ee",
    "reference": "786035271d01882e129295858656324d3e5110ee",
    "title": "Contact form for YourDomain",
    "email": "you@yourdomain.com",
    "success_redirect": "https://yourdomain.com/contact-success/",
    "created": 1573136139
  }
]