Discover/ArcGIS API
live

ArcGIS APIhub.arcgis.com

Search and retrieve open data from ArcGIS Hub. Access datasets, maps, apps, and documents with metadata including extent, tags, view counts, and license info.

This API takes change requests — .
Endpoint health
verified 4h ago
search_items
get_item
2/2 passing latest checkself-healing
Endpoints
2
Updated
4h ago

What is the ArcGIS API?

The ArcGIS Hub API exposes 2 endpoints for searching and retrieving open data content published on hub.arcgis.com. Use search_items to query the full catalog by keyword, content type, and sort order, getting back paginated results with fields like num_views, tags, source, and geographic extent. Use get_item to pull complete metadata for any individual item by its 32-character ID, including license info, spatial reference, and service URL.

This call costs1 credit / call— charged only on success
Try it
Page number for pagination (1-based).
Maximum number of results per page (1-100).
Free-text search query to match against item titles, descriptions, and tags. When omitted, returns all content sorted by the chosen sort order.
Sort order for results. Prefix with '-' for descending on title/created/modified.
Filter results by content collection type.
api.parse.bot/scraper/d3decdf1-6a88-47f9-a4be-92a6be164507/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d3decdf1-6a88-47f9-a4be-92a6be164507/search_items?page=1&limit=10&query=weather&sort_by=relevance&collection=all' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace hub-arcgis-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: ArcGIS Hub SDK — search open data, drill into item details."""
from parse_apis.hub_arcgis_com_api import ArcGISHub, SortBy, Collection, ItemNotFound

client = ArcGISHub()

# Search for weather-related datasets, sorted by most views
for item in client.item_summaries.search(query="weather", sort_by=SortBy.MODIFIED_DESC, collection=Collection.DATA, limit=5):
    print(item.title, "|", item.type, "|", item.num_views, "views")

# Drill down: take the first result and fetch full details
hit = client.item_summaries.search(query="wildfire", limit=1).first()
if hit is not None:
    detail = hit.details()
    print(detail.title)
    print("description:", detail.description[:120] if detail.description else "(none)")
    print("tags:", detail.tags)
    print("rating:", detail.avg_rating, "comments:", detail.num_comments)

    # Point lookup by the same id through the items collection
    try:
        refreshed = client.items.get(id=hit.id)
        print("size:", refreshed.size, "bytes | completeness:", refreshed.score_completeness)
    except ItemNotFound as e:
        print("Item no longer available:", e.message)

print("exercised: item_summaries.search / ItemSummary.details / items.get")
All endpoints · 2 totalmissing one? ·

Search ArcGIS Hub open data catalog. Returns paginated results filtered by query, collection type, and sort order. Each page returns up to the specified limit of items with metadata including title, type, tags, view count, and geographic extent when available.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
limitintegerMaximum number of results per page (1-100).
querystringFree-text search query to match against item titles, descriptions, and tags. When omitted, returns all content sorted by the chosen sort order.
sort_bystringSort order for results. Prefix with '-' for descending on title/created/modified.
collectionstringFilter results by content collection type.
Response
{
  "type": "object",
  "fields": {
    "page": "current page number",
    "items": "array of item objects with id, title, snippet, type, owner, source, tags, categories, created, modified, num_views, access, license, url, thumbnail, and optional geometry",
    "limit": "page size used",
    "total": "total number of matching items across all pages",
    "returned": "number of items returned in this page"
  },
  "sample": {
    "data": {
      "page": 1,
      "items": [
        {
          "id": "742bc12654f7489dbe9443b62bb8eb42",
          "url": "https://ecity.maps.arcgis.com/apps/webappviewer/index.html?id=742bc12654f7489dbe9443b62bb8eb42",
          "tags": [
            "Weather",
            "Feat"
          ],
          "type": "Web Mapping Application",
          "owner": "lsmallman_ECity",
          "title": "Weather",
          "access": "public",
          "source": null,
          "created": 1573581301000,
          "license": "none",
          "snippet": "View a live weather radar and current weather advisories",
          "modified": 1614263438000,
          "num_views": 717,
          "thumbnail": "thumbnail/thumbnail1614263436611.png",
          "categories": []
        }
      ],
      "limit": 5,
      "total": 7065,
      "returned": 5
    },
    "status": "success"
  }
}

About the ArcGIS API

Searching the ArcGIS Hub Catalog

The search_items endpoint accepts a free-text query matched against item titles, descriptions, and tags. You can narrow results with the collection parameter to filter by content type (e.g. datasets, maps, applications, documents, sites). Pagination is controlled via page (1-based) and limit (1–100). The response includes total matching items across all pages alongside the returned count for the current page, making it straightforward to walk through large result sets. Each item in the items array carries id, title, snippet, type, owner, source, tags, categories, created, modified, num_views, access, and licens (license) fields.

Retrieving Full Item Metadata

Once you have an item ID from search results, get_item returns the complete record for that item. The response expands on the search summary with additional fields: url (the item's service or application endpoint), size in bytes, type keywords, and access level (public, private, or org). Timestamps for created and modified are returned in milliseconds. The source field identifies the publishing organization, which is useful when filtering data by government agency or institutional publisher.

Coverage and Data Types

ArcGIS Hub hosts open data contributed by city, county, state, federal, and international government agencies alongside universities and NGOs. Items span Feature Services, Web Maps, CSV files, shapefiles, and web applications. The type field in both endpoints distinguishes these categories. The tags and categories arrays reflect the keywords publishers assigned, which vary in consistency across organizations. The num_views field gives a rough signal of how widely used a particular dataset is.

Reliability & maintenanceVerified

The ArcGIS API is a managed, monitored endpoint for hub.arcgis.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when hub.arcgis.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official hub.arcgis.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4h ago
Latest check
2/2 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Discover publicly available GIS datasets for a city or region using the query and collection parameters in search_items
  • Build a data catalog aggregator that indexes government open data by source organization and tags
  • Identify the most-accessed spatial datasets on ArcGIS Hub by sorting results on num_views
  • Retrieve the service url for a Feature Service item via get_item to pipe it into a GIS analysis pipeline
  • Monitor dataset freshness by tracking the modified timestamp on known item IDs
  • Filter open data by license type using the licens field returned in search_items results
  • Enumerate all map items published by a specific organization by querying the source field across paginated results
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does ArcGIS Hub have an official developer API?+
Yes. Esri publishes the ArcGIS Hub API and the broader ArcGIS REST API, documented at developers.arcgis.com. The Parse API surfaces the open data catalog specifically, covering search and item metadata without requiring an Esri account or API key.
What does `get_item` return that `search_items` doesn't?+
get_item adds the item's url (pointing to the underlying service or application), size in bytes, and type keywords not included in the search summary. Both endpoints share core fields like id, title, type, owner, tags, and created/modified timestamps, but get_item is the right call when you need the full record for a single known item.
Can I filter `search_items` results to a specific geographic bounding box?+
Not currently. The search_items endpoint filters by query, collection, and sort_by but does not accept a spatial extent or bounding box parameter. Geographic extent is returned as metadata on items when available. You can fork this API on Parse and revise it to add a spatial filter parameter.
Does the API return the actual dataset content (rows, geometries)?+
No. Both endpoints return item metadata only — title, description, tags, license, timestamps, and the service url. They do not return feature rows, geometries, or attribute tables. The url field from get_item points to the underlying service where the data itself can be fetched separately. You can fork this API on Parse and revise it to add an endpoint that queries a Feature Service URL for actual records.
Are items from private or organization-restricted ArcGIS Hub portals included?+
The API covers publicly accessible content only. The access field on items can be public, private, or org, but items returned are those visible without authentication. Private and org-restricted items are not exposed.
Page content last updated . Spec covers 2 endpoints from hub.arcgis.com.
Related APIs in Maps GeoSee all →
spatial.nsw.gov.au API
Search and retrieve spatial data, publications, news, and information from NSW Spatial Services, including portal items, data packs, and groups. Access detailed information about spatial datasets and resources available through the NSW Spatial Services Portal.
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
elements.envato.com API
Search and browse millions of creative assets from Envato Elements, including stock photos, videos, music, fonts, and templates across all categories. Get detailed information about specific items, pricing plans, and discover new content through keyword search and category browsing.
hudexchange.info API
Search and browse over 5,288 HUD resources including FAQs, training materials, reports, and general documents across 95+ housing and urban development programs. Filter results by program, topic, and content type to quickly find the information you need.
hubmub.com API
Search and discover job opportunities on HubMub by filtering results based on your preferred search terms, job type, category, industry, and location. Retrieve detailed information about specific job listings to help you find the right position that matches your career goals.
blenderkit.com API
Search BlenderKit's extensive library of 3D models, materials, scenes, HDRs, and brushes, complete with detailed asset information and category browsing. Retrieve intelligent search suggestions and explore organized collections to discover assets across any creative domain.
howbazaar.gg API
Query items, skills, merchants, and monsters from the How Bazaar game database. Look up detailed information about in-game equipment, abilities, NPCs, and enemy encounters, with optional filters by hero, tier, size, and tag.
discord.com API
Search Discord Help Center articles and retrieve full-text content in multiple formats to find answers about Discord features, troubleshooting, and account management. Browse available help categories and access complete article details including both plain text and HTML versions.