Yellow Dog supports RFID capabilities through third-party integration partners. To enable accurate interpretation of RFID tags printed by Yellow Dog, we expose the identifier values used as the basis for EPC (Electronic Product Code) generation.
This guide explains how Yellow Dog uses RFID tags to encode and detect unique EPC values. It also explains how each Yellow Dog EPC value has a GTIN component which can be retrieved from the epcGTIN property now available through our Item API endpoints.
Each RFID label printed by Yellow Dog contains an EPC value encoded into the RFID tag’s EPC memory bank. This EPC value consists of a two part code:
- A GTIN payload (epcGTIN)
- A serial/sequence number to uniquely identify each tag instance
- GTIN: 10000000017999
- Serial/sequence number: 100000000004
The resulting EPC memory bank value will be encoded as:
- HEX: 30340000006369d74876e804
This corresponds to the EPC URI:
- urn:epc:tag:sgtin-96:1.0000000.101799.100000000004
The epcGTIN property appearing in Yellow Dog API endpoints refers to the GTIN payload component of EPC values stored in RFID tags printed by Yellow Dog. Each GTIN14 value is associated with only one item.
Since each item may be referenced by more than one GTIN14 value, the epcGTIN property is an array of GTIN14 values associated with that item.
This array includes:
- The current GTIN used for newly printed RFID labels
- Any historical GTIN values previously used for that same item
Integrators should use these GTIN values when decoding EPCs read from Yellow Dog RFID tags.
The GTIN14 value is a unique identifier stored per item in the Yellow Dog database.
- Depending on the Yellow Dog system configuration, the generated GTIN-14 value may match the Yellow Dog item SKU
- It is used specifically as part of RFID EPC generation
- The epcGTIN field is available in api responses from fetch API version 3.27.0 and above (Feb 2026).
- The epcGTIN field is available only for database version 377 and above with a build code ≥ 2025.12.24.
- This is the first release where the GTIN schema exists.
The following endpoints now return epcGTIN property with an array of strings when the expand=GTIN is included in the request:
- GET /stores/:id/items
- GET /items
- GET /items/:id
The API returns epcGTIN as an array of GTIN14 strings.
[
{
"id""description": "abcdx0":,
"itemDesc abcdx0",
... additional prexisting fields
"epcGTIN": [
"10001000012457"
]
},
{
"id": "beefx0",
"description": "itemDesc beefx0",
... additional prexisting fields
"epcGTIN": [
"10001000012487",
"10000000045687"
]
}
]When interacting with Yellow Dog-generated RFID tags, integrators should:
- Read the EPC memory bank from the RFID tag
- Decode the EPC into its URI or component fields
- Extract the GTIN value
- Look up that GTIN in the integrator’s system mapping
- Resolve it back to the Yellow Dog ItemID or SKU
- Use other Yellow Dog API endpoints for item-level operations
The epcGTIN field enables integrators to correctly interpret Yellow Dog RFID tags by exposing the GTIN payloads used in EPC creation.
This ensures consistent mapping between RFID reads and Yellow Dog item identities across all supported API endpoints.