Appendix—Access, view, and execute backend API requests
- Last Updated: January 5, 2026
- 2 minute read
- OpenEdge
- Version 12.8
- Documentation
This appendix provides guidance on how to access and interact with the backend APIs
available in the OpenEdge Memory Profiler tool. These APIs allow you to retrieve
profiling data in a structured format, such as JSON, which can be used for custom
integrations or reporting. The APIs are exposed through a built-in SwaggerUI viewer
that ships with every PAS for OpenEdge instance created using the oemp
install command. For more information about this command, see Install the OpenEdge Memory Profiler tool. This viewer offers an interactive interface to
test and execute API requests without requiring additional setup.
|
SwaggerUI opens and displays a consolidated view of all available services, allowing you to quickly verify whether you are accessing the correct API endpoint.
- Source—Provides any source of recording data. In OpenEdge
Memory Profiler Release 1.0, this is limited only to the
.oemp files and enables you to:
- Discover available recordings
- Initiate imports
- View the progress of current imports

- Data—Returns all of the application data imported from a source
recording.

- Catalog—Provides endpoints for accessing and retrieving the data displayed in the SwaggerUI.
- Debug—Reserved for internal use and testing. Enables viewing of API request messages and error responses. This service is not intended for standard user operations.
Steps to access, view, and execute the SwaggerUI viewer
- Ensure that the PAS for OpenEdge instance created using the
oemp installcommand is running and accessible on the configured HTTP port. - Navigate to the following URL in your browser:
The page displays an interactive catalog of all available backend APIs.http://localhost:8880/report/static/catalog.html - The viewer lists endpoints grouped by functionality. Each endpoint
includes:
- HTTP method (
GET,POST,PUT,DELETE) - Endpoint path with placeholders for application and agent identifiers
- Description of the operation
- HTTP method (
- Click Execute to send the request and view the JSON response.