show ip ospf interface br vrf all
Python
Copy
import json

"""
Modify these please
"""
url='http://<IP_Address>/ins'
switchuser='<User_ID>'
switchpassword='<Password>'

myheaders={'content-type':'application/json'}
payload={
  "ins_api":{
  "version": "1.0",
  "type": "cli_show",
  "chunk": "0",
  "sid": "1",
  "input": "show ip ospf interface br vrf all ",
  "output_format": "json"
}

response = requests.post(url,data=json.dumps(payload), headers=myheaders,auth=(switchuser,switchpassword)).json()
output = json.dumps(response, indent=4, sort_keys=True)


{
  "ins_api": {
    "type": "cli_show",
    "version": "1.0",
    "sid": "eoc",
    "outputs": {
      "output": {
        "input": "show ip ospf interface br vrf all ",
        "msg": "Success",
        "code": "200",
        "body": {
          "TABLE_ctx": {
            "ROW_ctx": [
              {
                "ptag": "100",
                "cname": "default",
                "intf_count": 3,
                "TABLE_intf": {
                  "ROW_intf": [
                    {
                      "ifname": "Eth6/23",
                      "index": 2,
                      "area": "0.0.0.0",
                      "cost": 40,
                      "state_str": "DR",
                      "nbr_total": 1,
                      "admin_status": "up"
                    },
                    {
                      "ifname": "Eth6/25",
                      "index": 3,
                      "area": "0.0.0.0",
                      "cost": 40,
                      "state_str": "DR",
                      "nbr_total": 0,
                      "admin_status": "up"
                    },
                    {
                      "ifname": "Lo0",
                      "index": 1,
                      "area": "0.0.0.0",
                      "cost": 1,
                      "state_str": "LOOPBACK",
                      "nbr_total": 0,
                      "admin_status": "up"
                    }
                  ]
                }
              },
              {
                "ptag": "100",
                "cname": "vrf1",
                "intf_count": 2,
                "TABLE_intf": {
                  "ROW_intf": [
                    {
                      "ifname": "SL1",
                      "index": 5,
                      "area": "0.0.0.0",
                      "cost": 1,
                      "state_str": "DOWN",
                      "nbr_total": 0,
                      "admin_status": "down"
                    },
                    {
                      "ifname": "Eth6/13",
                      "index": 4,
                      "area": "0.0.0.0",
                      "cost": 40,
                      "state_str": "BDR",
                      "nbr_total": 1,
                      "admin_status": "up"
                    }
                  ]
                }
              }
            ]
          }
        }
      }
    }
  }
}