Hi Energy AI Ruby Gem — Official Affiliate Marketing API Client

Gem Version Ruby License: MIT API Docs

hi_energy_ai is the official Ruby client for the Hi Energy AI API — a production REST API for affiliate marketing data, coupon deals, advertiser discovery, commission transactions, click reporting, and publisher analytics.

Use this gem to integrate Hi Energy AI into Ruby on Rails apps, background jobs, data pipelines, AI agents, and MCP-compatible tools without hand-rolling HTTP calls.

| | | |---|---| | RubyGems | hi_energy_ai | | API base URL | https://app.hienergy.ai/api/v1 | | Documentation | app.hienergy.ai/api_documentation | | OpenAPI | OpenAPI reference | | Repository | github.com/HiEnergyAgency/hi_energy_api |


Table of contents


What is the Hi Energy AI API?

Hi Energy AI aggregates and normalizes affiliate program data from major networks — including FlexOffers, Commission Junction (CJ), Rakuten, Impact, Awin, Partnerize, Pepperjam, and ShareASale — and exposes it through a single, AI-friendly JSON API.

The platform is built for:

  • Affiliate marketers searching deals and advertisers by domain, category, or keyword
  • Publishers tracking transactions, clicks, commissions, and status changes
  • Developers building dashboards, ETL jobs, or internal tools on structured JSON
  • AI agents using MCP, OpenAPI, and predictable pagination metadata

Full reference: Hi Energy AI API Documentation


Why use the hi_energy_ai gem?

Benefit Description
Official client Matches the public API playground and OpenAPI schema
Typed Ruby API Resource objects (client.deals, client.advertisers, …) instead of raw URLs
Auth built in X-Api-Key and OAuth bearer support
Pagination helpers Auto-follow meta.next_page on list endpoints
MCP support Bootstrap and JSON-RPC against /mcp on the app origin
Dry run mode Validate requests with dry_run=true without live data
MIT licensed Free to use in commercial Ruby projects

Installation

Add to your Gemfile:

gem "hi_energy_ai"

Or install from RubyGems:

gem install hi_energy_ai

Requirements: Ruby 3.2+


Quick start

  1. Sign in at Hi Energy AI and create an API key on the API Key page.
  2. Install the gem and call the API:
require "hi_energy_ai"

client = HiEnergyAi.new(api_key: ENV["HI_ENERGY_API_KEY"])

# Affiliate advertisers
client.advertisers.list(limit: 5)

# Coupon / promo deals
client.deals.list(active: true, country: "US")

# Universal search (advertisers, deals, contacts, …)
client.search.query(q: "nike", types: "advertisers,deals", per_type_limit: 5)

# Commission and sales reports
client.reports.find("top_advertisers_by_sales", period: "last_90_days", limit: 10)

Equivalent curl (same API the gem calls):

curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://app.hienergy.ai/api/v1/advertisers?limit=5"
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://app.hienergy.ai/api/v1/deals?active=true&country=US"

Authentication

The Hi Energy AI API accepts API keys via header (recommended):

X-Api-Key: YOUR_API_KEY
client = HiEnergyAi.new(api_key: "your_integration_key")

OAuth Bearer tokens for signed-in user sessions:

client = HiEnergyAi.new(bearer_token: ENV["AUTH0_ACCESS_TOKEN"])

Get your key: API Documentation → API Key


Ruby resource reference

All optional keyword arguments are sent as query parameters. Methods that accept attributes send JSON request bodies.

Resource Methods
client.search query(q:, **params)
client.advertisers list, find(id), search_by_domain(domain:), by_domain(domain:), contacts(id), similar(id), related(id), find_more_contacts(id)
client.deals list, find(id), types, translate(id)
client.contacts list, create(attributes), add(attributes)
client.transactions list, find(id)
client.clicks list(start_date:, end_date:, **params)
client.opportunities list
client.reports list, find(id)
client.publishers list, find(id), create(attributes), update(id, attributes), find_linkedin_users(id)
client.agencies list, find(id)
client.networks list, find(id)
client.status_changes list
client.tags list, advertisers(id)
client.users list, find(id), create(attributes), update(id, attributes), resend_invitation(id), rotate_api_key(id)
client.verticals list
client.domains search(domain:)
client.deeplinks generate(attributes)
client.exports list, find(id), create(attributes)
client.tools list
client.schema fetch
client.mcp bootstrap, integration, initialize_session, call(method, params: {})

Examples:

client.advertisers.search_by_domain(domain: "example.com", limit: 10)
client.clicks.list(start_date: "2026-07-01", end_date: "2026-07-13")

# Mutating methods accept idiomatic keyword arguments...
client.publishers.create(name: "Example Publisher", website: "https://example.com")
client.deeplinks.generate(url: "https://merchant.example/product")

# ...or a positional Hash (equivalent, useful for dynamic payloads):
client.publishers.create({ name: "Example Publisher", website: "https://example.com" })

For endpoint-specific filters and request attributes, use the API playground or fetch the current OpenAPI document:

openapi = client.schema.fetch
openapi.body

Affiliate networks and data sources

Hi Energy AI normalizes feeds from:

FlexOffers · CJ (Commission Junction) · Rakuten Advertising · Impact · Awin · Partnerize · Pepperjam · ShareASale · proprietary enrichment

One API key, one JSON schema — no per-network SDK required in Ruby.


MCP and AI agent integration

The API is designed for AI agents, chatbots, and MCP clients. MCP routes run on the app origin (https://app.hienergy.ai), not under /api/v1:

client.mcp.bootstrap
client.mcp.integration
client.mcp.initialize_session
client.mcp.call("tools/list")

Initialize MCP via curl:

curl -X POST https://app.hienergy.ai/mcp \
  -H "X-Api-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-11-25"}}'

See also: MCP Server documentation · OpenAPI reference


Pagination, dry run, and rate limits

Pagination

List responses include data and meta (current_page, next_page, per_page, has_more):

client.paginate("/deals", params: { limit: 50 }).each do |page|
  page.data.each { |deal| process(deal) }
end

Every successful request returns a HiEnergyAi::Response:

response = client.deals.list(limit: 10)

response.success? # true for HTTP 2xx
response.status   # HTTP status
response.headers  # response headers
response.body     # complete parsed JSON
response.data     # the top-level "data" value
response.meta     # the top-level "meta" value
response.to_h     # normalized response hash

Dry run

Add ?dry_run=true to every request. The server still receives the call and your key must be valid — it validates request wiring without treating the call as production traffic. server_dry_run: is the preferred keyword; dry_run: remains as an alias.

HiEnergyAi.new(api_key: key, server_dry_run: true).deals.list(active: true)

# Equivalent (legacy alias):
HiEnergyAi.new(api_key: key, dry_run: true).deals.list(active: true)

Rate limits

Account type Limit
Hi Energy publisher 1,000 requests / hour
Other publishers 10,000 requests / hour

Headers: X-RateLimit-Limit, X-RateLimit-Remaining, X-RateLimit-Reset


Configuration

HiEnergyAi.configure do |config|
  config.api_key = ENV["HI_ENERGY_API_KEY"]
  config.base_url = HiEnergyAi::Configuration::API_BASE_URL   # https://app.hienergy.ai/api/v1
  config.app_origin = HiEnergyAi::Configuration::APP_ORIGIN   # https://app.hienergy.ai
  config.timeout = 60
end

client = HiEnergyAi.new
Setting Default
base_url https://app.hienergy.ai/api/v1
app_origin https://app.hienergy.ai
timeout 30 seconds

Constructor options override global configuration for one client:

client = HiEnergyAi.new(
  api_key: ENV.fetch("HI_ENERGY_API_KEY"),
  timeout: 60,
  user_agent: "my-app/1.0"
)

For an endpoint without a resource helper, use the low-level client methods. Paths are relative to base_url:

client.get("/advertisers", params: { limit: 5 })
client.post("/exports", body: { report: "transactions" })
client.patch("/publishers/42", body: { publisher: { name: "New name" } })
client.delete("/custom_resource/42")

Error handling

Every failure — HTTP errors, missing credentials, and unparseable responses — raises HiEnergyAi::Error, so a single rescue catches all SDK failures.

begin
  client.advertisers.find(999)
rescue HiEnergyAi::Error => e
  e.status        # HTTP status
  e.code          # API error code
  e.message       # human-readable message
  e.request_id    # support/debugging request ID
  e.details       # optional structured error details
  e.response_body # parsed or raw response body
end

Notable error codes:

e.code When
MISSING_CREDENTIALS HiEnergyAi.new was called without api_key or bearer_token
INVALID_RESPONSE_BODY The server returned a non-JSON body (e.g. an HTML 502 from a proxy)
API-provided codes (NOT_FOUND, …) Returned in the JSON error payload

Frequently asked questions

What is the difference between hi_energy_ai and calling the REST API directly?

The gem wraps the same endpoints documented at app.hienergy.ai/api_documentation. It adds Ruby resource methods, authentication headers, JSON parsing, pagination iterators, and structured errors — so you do not maintain Faraday or Net::HTTP code in every project.

Is there a Python or JavaScript SDK?

This repository is the official Ruby gem. Other languages can use the REST API or OpenAPI spec at GET /api/v1/schema.

How do I search advertisers by website domain?

client.advertisers.by_domain(domain: "amazon.com")
# or
client.advertisers.search_by_domain(domain: "amazon.com")

Does the gem support OpenClaw or custom AI tools?

Yes. Use client.tools.list for the MCP tool catalog, client.schema.fetch for OpenAPI, and client.mcp for JSON-RPC against /mcp.

Where do I get an API key?

Sign in at app.hienergy.ai and visit API Documentation → API Key.


Development

git clone https://github.com/HiEnergyAgency/hi_energy_api.git
cd hi_energy_api
bin/setup              # install dependencies
bundle exec rake       # run specs + RuboCop

Individual tasks:

bundle exec rspec      # run the test suite
bundle exec rubocop    # run the linter
bundle exec rubocop -a # autocorrect safe offenses
bin/console            # interactive REPL with the gem loaded

To run the checks, build the gem, and publish the current version to RubyGems:

bin/publish

Publishing requires an authenticated RubyGems account with MFA. Update HiEnergyAi::VERSION and CHANGELOG.md before publishing a new release.



License

MIT — see LICENSE.txt.

API access requires a Hi Energy AI account and API key. Platform terms apply at app.hienergy.ai.