Metro Division Level

Batch Multiple Endpoints (Batch)

Retrieve data from multiple Analytics API endpoints in a single request, enabling efficient and consolidated data access.

Provide a comma separated list of Metropolitan Division level endpoint names in the components query parameter to specify which endpoints you would like to include.

Request Query Params

<table><tr><th>Property</th><th>Type</th><th>Description</th><th>Example</th></tr> <tr><td>components</td><td>string</td><td>A comma separated list of metropolitan division endpoint names. Spaces are not allowed.</td><td>metrodiv/hpi_ts_historical,metrodiv/hpi_ts_forecast</td> </tr> </table>

Request Body Fields

<table><tr><th>Field</th><th>Type</th><th>Description</th><th>Example</th></tr> <tr><td>[]</td><td>object</td><td></td><td></td> </tr> <tr><td>[].metrodiv</td><td>string</td><td>5-digit US-census metrodiv ID</td><td>41884</td> </tr> </table>
post/v2/metrodiv/component_mget

Query parameters

componentsstring required

A comma separated list of metropolitan division endpoint names. Spaces are not allowed.

Request body

metrodivstring

5-digit US-census metrodiv ID

Example request

[
  {
    "metrodiv": "41884"
  }
]

Response

Success

Example response

[
  {
    "metrodiv_info": {
      "metrodiv": "41884",
      "metrodiv_name": "San Francisco-Redwood City-South San Francisco, CA",
      "msa": "41860",
      "msa_name": "San Francisco-Oakland-Hayward, CA"
    }
  }
]