Skip to main content
GET
/
metadata
Get Metadata
curl --request GET \
  --url https://api.inprocess.world/api/metadata
import requests

url = "https://api.inprocess.world/api/metadata"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://api.inprocess.world/api/metadata', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.inprocess.world/api/metadata",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.inprocess.world/api/metadata"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.inprocess.world/api/metadata")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.inprocess.world/api/metadata")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "name": "Screenshot",
  "description": "",
  "image": "ar://gV14eh4vlzv1uVXLqFurgbpf9NXZqFSMxRBk2uO3J5o",
  "external_url": "",
  "animation_url": "ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30",
  "content": {
    "mime": "image/jpeg",
    "uri": "ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30"
  }
}
This endpoint is public and does not require authentication.

Example Usage

curl "https://api.inprocess.world/api/metadata?uri=ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30"
curl "https://api.inprocess.world/api/metadata?uri=ipfs://bafybeig..."

Example Response

{
  "name": "Screenshot",
  "description": "",
  "image": "ar://gV14eh4vlzv1uVXLqFurgbpf9NXZqFSMxRBk2uO3J5o",
  "external_url": "",
  "animation_url": "ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30",
  "content": {
    "mime": "image/jpeg",
    "uri": "ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30"
  }
}

Query Parameters

uri
string
required

The URI of the metadata to fetch. Supports IPFS (ipfs://) and Arweave (ar://) URIs.

Response

Metadata JSON returned successfully

name
string

Name of the token or asset

Example:

"Screenshot"

description
string

Description of the token or asset

Example:

""

image
string

Arweave or IPFS URI of the asset image

Example:

"ar://gV14eh4vlzv1uVXLqFurgbpf9NXZqFSMxRBk2uO3J5o"

external_url
string

External URL for the asset

Example:

""

animation_url
string

Arweave or IPFS URI of the animation or media file

Example:

"ar://TV4yYVYJ7mwsDZ19h_YNQBtRbLVIr_WITsrBnHxxW30"

content
object

Content metadata for the asset media