API Documentation

Developer Documentation

Integrate MATTEALE services into your applications with our comprehensive API.

Quick Start

Make your first API request

Here's an example of how to create a contact using our API

curl -X POST https://api.matteale.com/v1/contacts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "John Doe",
    "email": "john@example.com",
    "message": "Hello, I am interested in your services"
  }'

API Reference

Authentication

API Keys

All API requests require authentication using an API key. Include your API key in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Rate Limits

Free Tier100 requests/hour
Pro Tier1,000 requests/hour
EnterpriseUnlimited

SDKs & Libraries

JS

JavaScript SDK

For Node.js and browser

View on GitHub
Py

Python SDK

For Python 3.8+

View on GitHub
PHP

PHP SDK

For PHP 8.0+

View on GitHub