openapi: 3.0.1 info: version: 0.0.1 title: Search API description: |- # Overview The Search API **is bundled with each Zoning API product tier** and is used to retrieve a list of parcels' GroupIDs, which can then be used to make individual requests to the Zoning API. Gridics makes the Search API available **‘Free of Charge’**. Though this API is Free of Charge, it is more restrictive with Rate Limits. The Search API is a REST API that responds in JSON format.
## Environments The addressable API base URL/URI environments are: | Environment | Description | | --- | --- | | https://api.gridics.com/v1/search| Sandbox and production environment | ## Rate limits Rate limits protect the Gridics infrastructure from suspicious requests that exceed defined thresholds. DEMO APIs are limited to **10 calls per second** and **50 lifetime calls**. Production APIs are limited to **10 calls per second** and **500 calls per month**. Additional rate limits are available and they are granted according to your specific use case. If you would like to request additional limits, please Contact Us with more details. ## Authentication All Gridics APIs use API keys to authenticate requests. You can view and manage your API keys in the Developer Portal under the Apps section. Your API keys carry usage statistics, so be sure to keep them secure. Don't share your secret API keys in publicly accessible areas such as GitHub, client-side code, and so forth. Provide your API key as the ***x-api-key*** header. You must make all API calls over HTTPS. Calls that you make over plain HTTP will fail. API requests without authentication will also fail. ```shell curl -X GET "https://api.gridics.com/prod/v1/search?searchPolygon=[[[-104.94047761618103,39.754602384794055],[-104.94054116830583,39.75826665739592],[-104.933995299445,39.75836436866328],[-104.93386819519539,39.754602384794055],[-104.94047761618103,39.754602384794055]]]&page=3" \ -H "x-api-key: YOUR_API_KEY" ```