Skip to main content

Effective 10 September 2024, API Documentation can be found on our Equinix Product Documentation site.
The content on this page will not be updated after 1 Oct 2024 and will be inaccessible after 31st Dec 2024.


Determine IP Block Price

Determine costs of an IP block in a specified location.

 

IP block is an Equinix-allocated set of public IP addresses that can be used for on-premises resource configuration, firewall configuration or NAT to cloud service providers (CSP).

pricingIpBlock_0

Step 1: Authenticate

Submit your user credentials, Client ID, and Client Secret for OAuth2 authentication.

 

Refer to Generating Client ID and Client Secret under the Getting Access Token section for instructions on how to create client ID and client secret and refer to Requesting Access and Refresh tokens section for instructions on how to call Oauth API to validate and authenticate your credentials.

 

If you are unaware of your user credentials for Equinix Fabric, contact your local Equinix Service Desk.

Step 2: Get Attribute Information

Use the Get All Metros API request to find all metros where Equinix Fabric is available and determine connection origin location.

Step 3: Retrieve Pricing Information

Use the POST /fabric/v4/prices/search API request to retrieve IP block price estimates using pre-determined values.

 POST /fabric/v4/prices/search
MethodPOST
URL or Endpoint/fabric/v4/prices/search
HeadersAuthorization, Content-Type
Path ParametersNot applicable
Query ParametersNot applicable
Body Parametersfilter

Sample curl request - pricing information for an IP block

curl -X POST 'http://api.equinix.com/fabric/v4/prices/search'
-H 'content-type: application/json'
-H 'authorization: Bearer qwErtY8zyW1abcdefGHI'
-d '{
"filter": {
"and": [

{
"property": "/type",
"operator": "=",
"values": [
"IP_BLOCK_PRODUCT"
]
},
{
"property": "/ipBlock/type",
"operator": "=",
"values": [
"IPv4"
]
},
{
"property": "/ipBlock/prefixLength",
"operator": "=",
"values": [
29
]
},
{
"property": "/ipBlock/location/metroCode",
"operator": "IN",
"values": [
"SV", "WA"
]
}
]
}
}'

Body parameters

Parameter NameMandatoryData TypeExampleApplicable ValuesDescription
filteryesobject--Array of objects defining search conditions.  
andyesarray[object]--Logical operator.
propertyyesstring/type/ipBlock/type
/ipBlock/prefixLength
/ipBlock/location/metroCode
Search field parameter.
operatoryesstring==
IN
Search field parameter operator.
valuesyesarray[string]["IP_BLOCK_PRODUCT"]IP_BLOCK_PRODUCTSearch field parameter value.
 
/typeyes "property": "/type",
"operator": "=",
"values": [       "IP_BLOCK_PRODUCT"
]
 Product type.
operatoryesstring==Search field parameter operator.
valuesyesarray[string]["IP_BLOCK_PRODUCT"]IP_BLOCK_PRODUCT-
 
/account/accountNumberno "property": "/account/accountNumber",
"operator": "=",
"values": [
     270001
]
 Billing account number.
operatoryesstring==Search field parameter operator.
valuesyesarray[integer]

[270001]

--
 
/ipBlock/typeyes "property": "/ipBlock/type",
"operator": "=",
"values": [
    "IPv4"
]
 IP addressing block type.
operatoryesstring==Search field parameter operator.
valuesyesarray[string]["IPv4"]IPv4IPv4 - IP version 4 addressing.
 
/ipBlock/prefixLengthyes "property": "/ipBlock/prefixLength",
"operator": "=",
"values": [
    29
]
 The number of bits in the IP address that identify the network.
operatoryesstring==Search field parameter operator.
valuesyesarray[integer][29]29 
 
/ipBlock/location/metroCodeyes "property": "/ipBlock/location/metroCode",
"operator": "IN",
"values": [
   "SV", "WA", "AM"
]
 Metropolitan area identifier.
operatoryesstringININSearch field parameter operator.
valuesyesarray[string]["SV", "WA", "AM"]
 

Use the Get All Metros API request to retrieve the list of metros.

-

Sample response

{
"data": [
{
"type": "IP_BLOCK_PRODUCT",
"code": "ECX00005.PROD",
"name": "Equinix Fabric IP Addressing Product",
"description": "Equinix Fabric IP Addressing",
"charges": [
{
"type": "MONTHLY_RECURRING",
"price": 20.0
}
],
"currency": "USD",
"ipBlock": {
"type": "IPv4",
"prefixLength": 29,
"location": {
"metroCode": "SV"
}
}
},
{
"type": "IP_BLOCK_PRODUCT",
"code": "ECX00005.PROD",
"name": "Equinix Fabric IP Addressing Product",
"description": "Equinix Fabric IP Addressing",
"charges": [
{
"type": "MONTHLY_RECURRING",
"price": 160.0
}
],
"currency": "PLN",
"ipBlock": {
"type": "IPv4",
"prefixLength": 29,
"location": {
"metroCode": "WA"
}
}
}
],
"pagination": {
"offset": 0,
"limit": 2,
"total": 2
}
}

Response payload body description

Field  NameData TypeExample ValuesDescription
typestringIP_BLOCK_PRODUCTProduct type.

code

stringECX00005.PRODProduct code.

name

stringEquinix Fabric IP Addressing ProductProduct name.

description

stringEquinix Fabric IP AddressingProduct description.
chargesarray[object]List of product offerings with properties and prices.
currencystringUSDProduct offering price currency.
ipBlockobjectIP block information.
 
charges
typestringMONTHLY_RECURRINGCharge type.
pricenumber20.0Offering price.
 
ipBlock
typestringIPv4IP addressing block type.

IPv4 - IP version 4 addressing.

prefixLength

integer29The number of bits in the IP address that identify the network.
locationobjectLocation information.
 
ipBlock.location
metroCodestringSVMetropolitan area identifier.
 
 pagination
offsetinteger0Index of the first item returned in the response.
limitinteger2Maximum number of items returned per page.
totalinteger2Total number of items that match request criteria.
 

If you get “Access Denied” error, contact your local Equinix Service Desk for Equinix Fabric Portal access.