Skip to main content
GET
/
ipaddresses
List IP addresses allowed to access the API
curl --request GET \
  --url https://api.equalsmoney.com/v2/ipaddresses \
  --header 'Authorization: <api-key>'
{
  "limit": 200,
  "offset": 100,
  "count": 67,
  "rows": [
    {
      "id": "2327f0d0-2cb5-4f31-8de2-b9d04036fdd9",
      "ipaddressableId": "8365191f-08b8-4dc5-88fd-73fcd7fd41a1",
      "ip": "8.8.8.8",
      "description": "John Smith's home IP",
      "ipaddressableType": "string",
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

limit
integer
default:100

The maximum number of results to return.

Required range: 1 <= x <= 1000
Example:

200

offset
integer
default:0

The number of items to skip before returning results.

Example:

100

Response

200 - application/json

OK

count
integer
required

The total amount of records matching the querying when "limit" is ignored.

Example:

67

rows
object[]
required
limit
integer
default:100

The maximum number of results to return.

Required range: 1 <= x <= 1000
Example:

200

offset
integer
default:0

The number of items to skip before returning results.

Example:

100