URI Template
title: "URI Template" type: doc version: 1 created: 2026-02-28 author: "Wikipedia contributors" status: active scope: public tags: ["internet-standards", "url"] topic_path: "general/internet-standards" source: "https://en.wikipedia.org/wiki/URI_Template" license: "CC BY-SA 4.0" wikipedia_page_id: 0 wikipedia_revision_id: 0
A URI Template is a way to specify a URI that includes parameters that must be substituted before the URI is resolved. It was standardized by RFC 6570 in March 2012.
The syntax is usually to enclose the parameter in Braces ({example}). The convention is for a parameter to not be Percent encoded unless it follows a Question Mark (?).
Examples
- http://example.com/people/{firstName}-{lastName}/SSN
- http://example.com/query{?firstName,lastName}
If we were building these URIs for Björk with firstName=Björk and lastName=Guðmundsdóttir they would be:
- http://example.com/people/Björk-Guðmundsdóttir/SSN
- http://example.com/query?firstName=Bj%c3%b6rk&lastName=Gu%c3%b0mundsd%c3%b3ttir
::callout[type=info title="Wikipedia Source"] This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page. ::