Retrieve system info

GET /v1/system/info

To track user connections to your application you can use the following:

Responses

  • 200

    System Information Retrieved

    Hide response attributes Show response attributes object
    • platform string

      Operating system platform

    • platform_release string

      Platform release version

    • platform_version string

      Platform version

    • architecture string

      System architecture

    • hostname string

      Network hostname

    • ip_address string

      IP address

    • processor string

      Processor type

    • python_version string

      Python interpreter version

    • machine string

      Machine type

    • pid integer

      Process ID

    • cores integer

      Number of CPU cores

GET /v1/system/info
curl \
 -X GET https://api.infura.ai/v1/system/info \
 -H "x-api-key: $API_KEY"
Response examples (200)
{
  "platform": "string",
  "platform_release": "string",
  "platform_version": "string",
  "architecture": "string",
  "hostname": "string",
  "ip_address": "string",
  "processor": "string",
  "python_version": "string",
  "machine": "string",
  "pid": 42,
  "cores": 42
}