The API communicates over the HTTP protocol and responses are in JSON format.
Here is an example of using curl to fetch a list of forms:
curl --request GET \
--url https://api.moaform.com/v1/forms \
--header 'Authorization: Bearer {your_api_key}'
When making a request, the Authorization header must contain the api key
, where {your_api_key}
should be replaced with the API Key you have been issued.