Acrewity API Reference

Complete API documentation for integrating with Acrewity's API platform.

n8n Users: Install our community node @acrewity/n8n-nodes-acrewity from the n8n nodes panel. Then log in to Acrewity, go to Menu → API Keys, create a key, and paste it into your n8n Acrewity credentials.

npmjs.com/package/@acrewity/n8n-nodes-acrewity

Base URL

https://www.acrewity.com

Authentication

All API requests require authentication using API keys with Bearer token authentication.

API Key Format

API keys follow this format:

ak_<64_hexadecimal_characters>

Example:

YOUR_API_KEY

Authentication Header

Authorization: Bearer YOUR_API_KEY

Getting API Keys

  1. Sign up at www.acrewity.com
  2. Navigate to API Keys in your dashboard
  3. Click Create New API Key
  4. Provide a descriptive name for your key
  5. Click Create
  6. Copy your API key immediately - you won't be able to see it again!

API Endpoints

Execute Service

All services use a unified execution endpoint:

POST /api/services/execute

Headers:

Authorization: Bearer YOUR_API_KEY
Content-Type: application/json

Request Body:

{
  "service": "service_name",
  "operation": "operation_name",
  "parameters": {
    ...service-specific parameters
  }
}

Response:

{
  "success": true,
  "data": {
    ...operation results
  },
  "creditsUsed": 1,
  "creditsRemaining": 9999
}

Available Services

All services cost 1 credit per operation.

Service List

Document & Content Conversion

Data & File Processing

Communication & Web

Text & String Processing

Generators

Utilities

Error Responses

All services return consistent error responses:

{
  "success": false,
  "error": "Error type",
  "message": "Detailed error message",
  "code": "ERROR_CODE"
}

Common Error Codes

Code Description
400 Bad Request - Invalid input
401 Unauthorized - Missing or invalid API key
402 Payment Required - Insufficient credits
403 Forbidden - Access denied
404 Not Found - Service or resource not found
500 Internal Error - Server error

Credit System

Request processing is governed by the credit system:

Rate Limits

API keys are subject to rate limits:

For higher rate limits, contact us about enterprise plans.

Next Steps


API Version: v1
Last Updated: 2025-12-22
Support: our support team via the dashboard