Skip to content
  • Auto
  • Light
  • Dark
Talk to an expert

List

Get services
get/v1/services

Fetches a list of services used by Metronome and the associated IP addresses. IP addresses are not necessarily unique between services. In most cases, IP addresses will appear in the list at least 30 days before they are used for the first time.

Returns
servicesarray of object
Hide ParametersShow Parameters
ipsarray of string
namestring
usageenum
"makes_connections_from" OR "accepts_connections_at"
Hide ParametersShow Parameters
"makes_connections_from"
"accepts_connections_at"
curl https://api.metronome.com/v1/services \
    -H "Authorization: Bearer $METRONOME_BEARER_TOKEN"
200 Example
{
  "services": [
    {
      "ips": [
        "string"
      ],
      "name": "name",
      "usage": "makes_connections_from"
    }
  ]
}