{
    "name": "Trustfull API",
    "version": "1.0.0",
    "description": "API for managing orders programmatically",
    "base_url": "https:\/\/api.fultrustglobal.com\/v1",
    "authentication": {
        "type": "Bearer Token",
        "header": "Authorization: Bearer YOUR_API_TOKEN"
    },
    "endpoints": [
        {
            "method": "GET",
            "path": "\/v1\/statuses",
            "description": "Get list of available order statuses"
        },
        {
            "method": "GET",
            "path": "\/v1\/products",
            "description": "List all products with SKU and quantity"
        },
        {
            "method": "GET",
            "path": "\/v1\/products?sku={sku}",
            "description": "Get product details by SKU"
        },
        {
            "method": "POST",
            "path": "\/v1\/leads",
            "description": "Create a new lead (use product SKU)"
        },
        {
            "method": "GET",
            "path": "\/v1\/leads?id={leads_id}",
            "description": "Get leads details by ID"
        }
    ],
    "rate_limits": {
        "requests_per_minute": 60,
        "requests_per_hour": 1000
    }
}