Request

pending

by Joe Petrakovich

Make web requests via codeblocks and use the result in your notes.

Updated 2mo agoMITDiscovered via Obsidian Unofficial Plugins
View on GitHub

Obsidian Request

An Obsidian plugin for adding web requests to your notes.

  • Simple and forgiving markdown codeblock for configuration.
  • JSONPath for targeting the value in the response.
  • Handlebars for templating the result.
  • Request chaining

See the full documentation here

Quick example

```request
url: https://api.nasa.gov/planetary/apod?api_key=DEMO_KEY
---
<img src="{{url}}" alt="{{title}}" />
<details>
  <summary>{{title}}</summary>
  {{explanation}}
</details>
```

Configuration

fieldtyperequireddescription
urlURLyesThe HTTP/HTTPS endpoint to request
methodstringnoHTTP method: GET, POST, PUT, or DELETE (default: GET)
headersarraynoRequest headers as key-value pairs
bodyJSONnoRequest body (for POST/PUT requests)
pathstringnoJSONPath expression to extract data from response
thenobjectnoChain another request using data from the previous response
stringnoSeparator between config and template. Use Handlebars JS templates below

For plugin developers

Search results and similarity scores are powered by semantic analysis of your plugin's README. If your plugin isn't appearing for searches you'd expect, try updating your README to clearly describe your plugin's purpose, features, and use cases.

Request | SimilarPlugins