Apstra Rest API Explorer
Juniper Apstra REST API Explorer provides a GUI for testing REST API endpoints, eliminating the need for coding expertise. While Apstra IBA probes collect fabric signals, some users might not have GUI access. Developers can retrieve probe results programmatically and integrate these results into:
-
Dashboards
-
Ticketing systems
-
Configuration management databases (CMDBs)
-
Chat platforms
-
Reports
REST API Explorer helps discover and test endpoints live within a blueprint without disrupting the network. This tool acts as a live playbook for executing requests and receiving responses.
To launch Apstra REST API Explorer:
The API query response lists the "value" key. The "value"
key holds the Boolean value "true" in six occurrences. The properties
provide details on all six BFD sessions that are down.
{
"description": "",
"type": "table",
"items": [
{
"timestamp": "2026-03-23T06:52:29.309211Z",
"value": "true",
"id": 33,
"properties": {
"system_id": "5254003E711E",
"Remote_IP": "192.168.0.11",
"Link": "to_generic",
"Local_Address": "192.168.0.10",
"Local_interface": "ge-0/0/4.2",
"Remote_interface": "None"
}
},
{
"timestamp": "2026-03-23T06:52:29.309241Z",
"value": "true",
"id": 34,
"properties": {
"system_id": "525400CADB41",
"Remote_IP": "192.168.0.9",
"Link": "to_generic",
"Local_Address": "192.168.0.8",
"Local_interface": "ge-0/0/4.2",
"Remote_interface": "None"
}
},
{
"timestamp": "2026-03-23T06:52:29.309264Z",
"value": "true",
"id": 35,
"properties": {
"system_id": "525400CADB41",
"Remote_IP": "192.168.0.5",
"Link": "to_generic",
"Local_Address": "192.168.0.4",
"Local_interface": "ge-0/0/4.3",
"Remote_interface": "None"
}
},
{
"timestamp": "2026-03-23T06:52:29.309284Z",
"value": "true",
"id": 36,
"properties": {
"system_id": "5254003E711E",
"Remote_IP": "192.168.0.7",
"Link": "to_generic",
"Local_Address": "192.168.0.6",
"Local_interface": "ge-0/0/4.3",
"Remote_interface": "None"
}
},
{
"timestamp": "2026-03-23T06:52:29.309305Z",
"value": "true",
"id": 37,
"properties": {
"system_id": "5254003E711E",
"Remote_IP": "192.168.0.3",
"Link": "to_generic",
"Local_Address": "192.168.0.2",
"Local_interface": "ge-0/0/4.4",
"Remote_interface": "None"
}
},
{
"timestamp": "2026-03-23T06:52:29.309341Z",
"value": "true",
"id": 38,
"properties": {
"system_id": "525400CADB41",
"Remote_IP": "192.168.0.1",
"Link": "to_generic",
"Local_Address": "192.168.0.0",
"Local_interface": "ge-0/0/4.4",
"Remote_interface": "None"
}
}
],
"offset": 0,
"page": 1,
"per_page": 9223372036854776000,
"total_count": 6
}With this example, we showed how to use the Apstra REST API to retrieve probe output, interpret the response payload, and translate it into an actionable summary. This summary identifies six BFD sessions with a Down ("true") status and their associated properties. The pattern enables teams to automate scheduled reports, integrate the data into ticketing or observability tools, and adopt a repeatable, UI-independent approach to present fabric status to stakeholders.




