Skip to main content
POST
/
reseller
/
availability
Find available offers for an address
curl --request POST \
  --url https://api.offergrid.io/reseller/availability \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "address": {
    "street": "123 Main Street",
    "city": "Austin",
    "state": "TX",
    "zipCode": "78701",
    "country": "US",
    "unit": "Unit 205"
  },
  "category": "internet",
  "minPrice": 0,
  "maxPrice": 100
}
'

Authorizations

x-api-key
string
header
required

Team API key for authentication. Your team role (provider/reseller/hybrid) determines which endpoints you can access.

Body

application/json
address
Address · object
required

Service address to check availability for

category
enum<string>

Only return offers in this service category

Available options:
internet,
television,
security,
energy,
insurance,
other
Example:

"internet"

minPrice
number

Minimum monthly price

Example:

0

maxPrice
number

Maximum monthly price

Example:

100

Response

200

Offers available at the given address