List public templates

Every template on the network, as anyone can see it: what it is called, what can be done with objects made from it, how it looks and how many may exist. The details an organization keeps to itself are not here — only the fields it has chosen to show. For your own templates in full, use `GET /templates`. Open to everyone. No sign-in needed.

GET
/public/templates

Query Parameters

id?string

Return only the resource with this identifier. Equivalent to fetching it by path, but usable together with the other list filters.

org_id?string

Return only resources associated with this organization. On protected endpoints, authorization may restrict or replace this value with the credential's active organization.

name?string

Return only resources whose name matches this value exactly.

Lengthlength <= 255
autocomplete?string

Search the endpoint's supported text and identifier fields. Matching may be an exact identifier lookup or a case-insensitive prefix search, depending on the resource. Alphanumeric characters only.

limit?integer

How many items to return in one page. The default and the maximum are both 25; a larger value is rejected with 400.

Default25
Formatint64
Range1 <= value <= 25
next?string

Cursor for the next page, taken verbatim from the next field of the previous response. Keep every other query parameter the same between pages: sortBy and order are part of what the cursor means. An absent or empty next in a response means there are no more pages.

The value is opaque. Do not parse it or build one yourself.

order?string

Sort direction. Defaults to desc, newest first.

Default"desc"
Value in"asc" | "desc"
sortBy?string

Field used to sort the result. Supported fields depend on the endpoint; use when_created for chronological ordering where it is available. The default is the resource identifier, and identifiers break ties so cursor paging stays stable.

when_created[$gt]?string

Created after this moment.

Formatdate-time
when_created[$lt]?string

Created before this moment.

Formatdate-time
when_created[$gte]?string

Created at or after this moment.

Formatdate-time
when_created[$lte]?string

Created at or before this moment.

Formatdate-time

Response Body

application/json

application/json

application/json

curl -X GET "https://api.dual.network/public/templates"
{
  "templates": [
    {
      "id": "665f1c2d4b1a2c3d4e5f6a99",
      "name": "Summer Festival Ticket",
      "face_id": "665f1c2d4b1a2c3d4e5f6a50",
      "object": {
        "metadata": {
          "name": "Summer Festival 2026",
          "description": "Three days, four stages, one wristband."
        },
        "custom": {
          "tier": "general"
        }
      },
      "factory": {
        "max_supply": 4000,
        "minted_count": 1284
      },
      "actions": [
        {
          "name": "transfer",
          "access": {
            "type": "public"
          }
        }
      ],
      "when_created": "2026-03-01T10:00:00Z",
      "when_modified": "2026-03-04T16:20:00Z"
    }
  ]
}
{
  "code": 3,
  "message": "Key: 'limit' Error:Field validation for 'limit' failed on the 'lte' tag"
}
{
  "code": 13,
  "message": "internal error"
}