FRAMES | NO FRAMES Description | Parameters | Examples | Response
Feature - Feature Layer
URL http://<featurelayer-url>/<featureId>
Parent Resource Layer

Description

The feature resource represents a single feature in a layer in a feature service.

Resource Hierarchy

Feature - Feature Service

Parameters

Parameter Details
f Description: The response format. The default response format is html.

Values: html | json | pjson

Example Usage

Example 1: http://sampleserver10.arcgisonline.com/arcgis/rest/services/USA/FeatureServer/0/16

JSON Response Syntax

{ "feature" : <feature> }

JSON Response Example

{
  "feature" : 
  {
    "attributes" : {
      "FID" : 16, 
      "NAME" : "Gdansk", 
      "COUNTRY" : "Poland", 
      "POPULATION" : 909000, 
      "CAPITAL" : "N"
    }, 
    "geometry" : 
    {
      "x" : 18.624942779541, 
      "y" : 54.3662033081055
    }
  }
}