npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

n8n-nodes-akamai

v1.0.43

Published

Akamai API integration for n8n

Readme

n8n-nodes-akamai

npm version License: MIT n8n Community Node

Professional Akamai API integration for n8n workflows with automatic EdgeGrid authentication.

Features

  • Automatic EdgeGrid authentication handling
  • Complete REST API support (GET, POST, PUT, PATCH, DELETE)
  • PAPI-Use-Prefixes header management
  • Custom headers and query parameters
  • Comprehensive error handling
  • Configurable response format: body-only or full { meta, data } with status code and headers

Prerequisites

  • n8n v1.104.2+ (self-hosted installation required)
  • Active Akamai account with API access

Installation

Step 1: Enable Community Nodes

Configure your n8n instance to support Community Nodes:

# docker-compose.yml
services:
  n8n:
    image: n8nio/n8n:latest
    environment:
      - N8N_COMMUNITY_PACKAGES_ENABLED=true
      - N8N_REINSTALL_MISSING_PACKAGES=true

Step 2: Install Package

  1. Navigate to Settings → Community Nodes in your n8n instance
  2. Click Install and enter: n8n-nodes-akamai
  3. Restart n8n to complete installation

Quickstart

Example: GET user profile

  1. Create credentials: Akamai API
  2. Add the Akamai API node to the workflow
  3. Select Operation: GET
  4. Set API Path: /identity-management/v3/user-profile
  5. Run

Example: POST with JSON body

  1. Operation: POST
  2. API Path: /some/api/path
  3. Request Body:
{
  "example": true
}
  1. Run

Authentication

API Credentials Setup

  1. Access Identity & Access Management → API clients in Akamai Control Center
  2. Create or configure API client with required permissions
  3. Note your credentials for n8n configuration

n8n Credentials Configuration

Create Akamai API credentials with:

| Field | Description | | ------------- | ----------------------------------------------------- | | Client Token | API client token | | Client Secret | API client secret | | Access Token | API access token | | Host | API hostname (e.g., akab-xxxxx.luna.akamaiapis.net) |

Configuration

PAPI Use Prefixes

| Option | Behavior | | ----------------------- | -------------------------------------------- | | Don't Send Header | Use client default | | Include Prefixes (True) | Include ID prefixes (prp_, ctr_, grp_) | | Remove Prefixes (False) | Return clean IDs |

Response Format

There are two response modes:

  • Body-only (default): returns only the response body
{ "propertyId": "prp_123", "name": "Site" }
  • Full response (enable "Return Full Response (Meta/Data)"): returns { meta, data }
{
  "meta": {
    "statusCode": 200,
    "endpoint": "GET /identity-management/v3/user-profile",
    "headers": { "...": "..." }
  },
  "data": { "...": "..." }
}

Notes:

  • headers are included in meta only in full response mode
  • For 204 No Content, data may be null or an empty object depending on the API

Query parameters and headers

  • Add multiple query parameters via Options → Query Parameters
  • Add custom headers via Options → Headers

Tips for Akamai

  • PAPI-Use-Prefixes: control ID prefixes in responses (prp_, ctr_, grp_). Leave empty to use client default
  • Account Switch Key: if needed, add as query parameter accountSwitchKey=... in Options → Query Parameters

Troubleshooting

  • 401/403 Unauthorized/Forbidden: verify tokens/permissions in Akamai Control Center (API client scopes)
  • Invalid host: use only the hostname (e.g., akab-xxxxx.luna.akamaiapis.net), without path or protocol
  • Clock skew: ensure server time is synchronized (NTP) to satisfy EdgeGrid auth
  • 4xx/5xx with JSON body: the node returns the parsed error body; enable full response to inspect headers and endpoint

Support

License

MIT License - see LICENSE.md for details.

About

Community node providing integration between n8n automation workflows and Akamai's API ecosystem.