Un-static

Introduction

You can use our API to programmatically create form endpoints, retrieve them, and manage their properties. Anything you can do from your dashboard, you can do over the API.

API endpoints

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

Response

Every single response you get from our API is JSON formatted. Here is how a response might look when you call the /api/forms endpoint to list all your form endpoints.

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