Get Prop
Returns a Prop object.
Requests made through this page are proxied through an intermediary server due to Cross-Origin Resource Sharing restrictions.
auth<token>
Auth Token via Cookie
In: cookie
Path Parameters
propIdstring
Prop ID.
Response Body
curl -X GET "https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58"
fetch("https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58")
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import requests
url = "https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58"
response = requests.request("GET", url)
print(response.text)
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;
import java.net.http.HttpResponse.BodyHandlers;
import java.time.Duration;
HttpClient client = HttpClient.newBuilder()
.connectTimeout(Duration.ofSeconds(10))
.build();
HttpRequest.Builder requestBuilder = HttpRequest.newBuilder()
.uri(URI.create("https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58"))
.GET()
.build();
try {
HttpResponse<String> response = client.send(requestBuilder.build(), BodyHandlers.ofString());
System.out.println("Status code: " + response.statusCode());
System.out.println("Response body: " + response.body());
} catch (Exception e) {
e.printStackTrace();
}
using System;
using System.Net.Http;
using System.Text;
var client = new HttpClient();
var response = await client.GetAsync("https://api.vrchat.cloud/api/1/props/prop_829ba6f6-b837-49d9-b9a9-056b82103b58");
var responseBody = await response.Content.ReadAsStringAsync();
{
"_created_at": "2019-08-24T14:15:22Z",
"_updated_at": "2019-08-24T14:15:22Z",
"authorId": "usr_c1644b5b-3ca4-45b4-97c6-a2a0de70d469",
"authorName": "string",
"description": "string",
"id": "prop_829ba6f6-b837-49d9-b9a9-056b82103b58",
"imageUrl": "string",
"maxCountPerUser": 1,
"name": "string",
"releaseStatus": "public",
"spawnType": 0,
"tags": [
"string"
],
"thumbnailImageUrl": "string",
"unityPackageUrl": "string",
"unityPackages": [
{
"assetUrl": "https://api.vrchat.cloud/api/1/file/file_c991c050-8b43-4046-8182-24d068524ac5/24/file",
"assetVersion": 4,
"propSignature": "string",
"platform": "standalonewindows",
"unityVersion": "2022.3.22f1",
"variant": "string"
}
],
"worldPlacementMask": 1
}
{
"error": {
"message": "\"Missing Credentials\"",
"status_code": 401
}
}