Find an API

Search public APIs with auth details & Postman guides

← All APIs

Adobe Experience Manager (AEM) API

adobe · Company

Company No Auth Free & Open marketing

Swagger AEM is an OpenAPI specification for Adobe Experience Manager (AEM) API

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET getQuery
https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json?path=example&p.limit=1&1_property=example&1_property.value=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json?path=example&p.limit=1&1_property=example&1_property.value=example"
import requests
params = {
    "path": "example",
    "p.limit": "1",
    "1_property": "example",
    "1_property.value": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json');
url.searchParams.set('path', 'example');
url.searchParams.set('p.limit', '1');
url.searchParams.set('1_property', 'example');
url.searchParams.set('1_property.value', 'example');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json")
	q := baseURL.Query()
	q.Set("path", "example")
	q.Set("p.limit", "1")
	q.Set("1_property", "example")
	q.Set("1_property.value", "example")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json")
uri.query = URI.encode_www_form({
  "path" => "example",
  "p.limit" => "1",
  "1_property" => "example",
  "1_property.value" => "example"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/bin/querybuilder.json?" . http_build_query([
    "path" => "example",
    "p.limit" => "1",
    "1_property" => "example",
    "1_property.value" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getAemHealthCheck
https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health?tags=example&combineTagsOr=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health?tags=example&combineTagsOr=true"
import requests
params = {
    "tags": "example",
    "combineTagsOr": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health');
url.searchParams.set('tags', 'example');
url.searchParams.set('combineTagsOr', 'true');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health")
	q := baseURL.Query()
	q.Set("tags", "example")
	q.Set("combineTagsOr", "true")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health")
uri.query = URI.encode_www_form({
  "tags" => "example",
  "combineTagsOr" => "true"
})

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/system/health?" . http_build_query([
    "tags" => "example",
    "combineTagsOr" => "true"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET getInstallStatus
https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp';

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	targetURL := "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp"
	req, _ := http.NewRequest("GET", targetURL, nil)

	client := &http.Client{}
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
require "net/http"
require "json"

uri = URI("https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp")

http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"

req = Net::HTTP::Get.new(uri)

res = http.request(req)
puts JSON.parse(res.body)
<?php
$url = "https://api.apis.guru/v2/specs/adobe.com/aem/3.7.1-pre.0/crx/packmgr/installstatus.jsp";
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));

Postman Setup Guide

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Adobe Experience Manager (AEM) API?

Adobe Experience Manager (AEM) API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Adobe Experience Manager (AEM) API is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗