🌊
Urchin Web3 CMS
  • 🌊What is Urchin?
  • 🛠️How it works
  • 🏎️Getting started
  • 🧱API Reference
    • Core
      • urchin()
      • .preflight()
      • .process()
    • Template
      • .template.create()
      • .template.update()
      • .template.get()
      • .template.getAll()
    • Taxonomy
      • .taxonomy.create()
      • .taxonomy.update()
      • .taxonomy.get()
      • .taxonomy.getAll()
    • Asset
      • .asset.create()
      • .asset.update()
      • .asset.get()
      • .asset.getAll()
    • Entry
      • .entry.create()
      • .entry.update()
      • .entry.get()
      • .entry.getAll()
  • 🤔FAQs
Powered by GitBook
On this page
  • Function Example
  • Parameters for AssetGetInput
  • Response Example
  1. API Reference
  2. Entry

.entry.get()

Function Example

/// Create instance
const connection = urchin(...config); 

const foundAssets = connection.entry.get(AssetGetInput);

Parameters for AssetGetInput

label (* required)
description
type
default
valid values

*

Asset data to retrieve by public key

[PublicKey]

Response Example

[
  {
    template: "5SKNwTC2Svdd7AbynWTSwPdyZitDcLVcFeQrkqQ137Hd",
    taxonomy: [],
    private: false,
    immutable: false,
    archived: false,
    inputs: [
      {
      	headline: "this is a blog post",
        stage: "published",
        "featured image": "./hero.img",
        body: "this is the body of the post."
      }
    ]
  }
]
Previous.entry.update()Next.entry.getAll()

Last updated 1 year ago

🧱