Item Information

URL:
https://<service-info-url>/iteminfo
Methods:
GET
Version Introduced:
10.0

Description

The iteminfo resource returns the item information card for the service, which includes a description, a summary, and tags.

New in 10.6.1

For feature and map services published using ArcGIS Pro (2.2 or later) layer / table resource on services support the iteminfo resource. Check the hasMetadata flag on a layer / table resource to determine if that layer / table supports the iteminfo resource.

Request parameters

ParameterDetails

f

The response format. The default response format is html .

Values: html | json

Example usage

Example: Return item information for a MapService in JSON format:

https://sampleserver6.arcgisonline.com/arcgis/rest/services/SF311/MapServer/info/iteminfo?f=pjson

JSON Response syntax

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
 "culture": "<culture>",
 "name": "<servicename>",
 "guid": "<guid>",
 "catalogpath": "<catalogpath>",
 "snippet": "<snippet>",
 "description": "<description>",
 "Summary": "<service summary>",
 "title": "<title>",
 "tags": [
  "<tag1>",
  "<tag2>",
  "<tag3>"
 ],
 "type": "<service type>",
 "typekeywords": [
  "<typekeyword1>",
  "<typekeyword2>",
  "<typekeyword3>",
  "<typekeyword4>"
 ],
 "thumbnail": "<relative thumbnail url>",
 "url": "",
 "extent": {
  "xmin": "<xmin>",
  "ymin": ">ymin>",
  "xmax": ">xmax>",
  "ymax": ">ymax>"
 },
 "spatialreference": "<spatialreference>",
 "accessinformation": "<service access information>",
 "licenseinfo": "<service licence information >"
}

JSON Response example

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
 "culture": "en-US",
 "name": "sanfrancisco_museums",
 "guid": "2D4D1E57-3613-4288-9221-90C97FB2803B",
 "catalogpath": "",
 "snippet": "Sample Map containing San Francisco Museum data",
 "description": "Sample Map containing point of interests in San Francisco (museums)",
 "Summary": "Sample Map containing San Francisco Museum data",
 "title": "Clustering",
 "tags": [
  "San Francisco",
  "Museums"
 ],
 "type": "Map Service",
 "typekeywords": [
  "Data",
  "Service",
  "Map Service",
  "ArcGIS Server"
 ],
 "thumbnail": "thumbnail/thumbnail.png",
 "url": "https://server/arcgis/services/sanfrancisco_museums/",
 "extent": {
  "xmin": "-122.515048",
  "ymin": "37.632528",
  "xmax": "-122.293731",
  "ymax": "37.863433"
 },
 "spatialreference": "GCS_WGS_1984",
 "accessinformation": "esri",
 "licenseinfo": "This is a test service."
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.

You can no longer sign into this site. Go to your ArcGIS portal or the ArcGIS Location Platform dashboard to perform management tasks.

Your ArcGIS portal

Create, manage, and access API keys and OAuth 2.0 developer credentials, hosted layers, and data services.

Your ArcGIS Location Platform dashboard

Manage billing, monitor service usage, and access additional resources.

Learn more about these changes in the What's new in Esri Developers June 2024 blog post.

Close