| FRAMES | NO FRAMES | Description | Parameters | Examples | Response | 
| URL | http://<featurelayer-url>/<featureId> | 
|---|---|
| Parent Resource | Layer | 
The feature resource represents a single feature in a layer in a feature service.

| Parameter | Details | 
|---|---|
| f | Description: The
response format. The default response format is html. Values: html | json | pjson  | 
Example 1: http://sampleserver10.arcgisonline.com/arcgis/rest/services/USA/FeatureServer/0/16
{ "feature" : <feature> }
{
  "feature" : 
  {
    "attributes" : {
      "FID" : 16, 
      "NAME" : "Gdansk", 
      "COUNTRY" : "Poland", 
      "POPULATION" : 909000, 
      "CAPITAL" : "N"
    }, 
    "geometry" : 
    {
      "x" : 18.624942779541, 
      "y" : 54.3662033081055
    }
  }
}