GET Profiles
curl --request GET \
--url https://api.bitski.com/v2/profiles/{username}import requests
url = "https://api.bitski.com/v2/profiles/{username}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.bitski.com/v2/profiles/{username}', 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.bitski.com/v2/profiles/{username}",
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.bitski.com/v2/profiles/{username}"
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.bitski.com/v2/profiles/{username}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bitski.com/v2/profiles/{username}")
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{
"profile": {
"connectedAccounts": [{
"externalId": "0xdcdc64fb0eeb0cc6d06b03f8616961989db1437f",
"id": "18c71561-8ea5-4a63-88d7-6931d2b32513",
"isPublic": true
}],
"description": "Candy Digital is a next generation digital collectible company which has been launched by three titans of their respective industries: Michael Rubin, Executive Chairman, Fanatics; Mike Novogratz, founder and CEO, Galaxy Digital; and Gary Vaynerchuk, Serial Entrepreneur and Investor.\n\nCandy is building the ecosystem for official Major League Baseball collectable NFTs where fans and collectors will be able to purchase, trade, and share officially licensed NFTs to deepen their love of the sport. Candy’s team of world class digital artists, designers, and technologists are developing a broad range of digital collectibles, beginning with sports content and expanding into art, entertainment, music, and more.\n\nTerms & Conditions: https://bit.ly/3qXU7p7\nPrivacy Policy: https://bit.ly/3yEWY90",
"id": "bd3fc0c0-c7b6-4f6d-842b-de8cd1934550",
"imageUrl": "https://cdn.bitskistatic.com/clients-raw/90419700-e0fd-4e06-8901-8b73de32bcde/287c7414-fb2f-430c-9dbc-73ab41c1b386.gif",
"links": {
"instagram": "candydigital",
"twitter": "CandyDigital",
"website": "https://www.candy.com/"
},
"name": "Candy",
"type": "CREATOR",
"username": "Candy"
}
}
Wallet Experience APIs
GET Profiles
Get public profile details
GET
/
v2
/
profiles
/
{username}
GET Profiles
curl --request GET \
--url https://api.bitski.com/v2/profiles/{username}import requests
url = "https://api.bitski.com/v2/profiles/{username}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.bitski.com/v2/profiles/{username}', 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.bitski.com/v2/profiles/{username}",
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.bitski.com/v2/profiles/{username}"
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.bitski.com/v2/profiles/{username}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.bitski.com/v2/profiles/{username}")
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{
"profile": {
"connectedAccounts": [{
"externalId": "0xdcdc64fb0eeb0cc6d06b03f8616961989db1437f",
"id": "18c71561-8ea5-4a63-88d7-6931d2b32513",
"isPublic": true
}],
"description": "Candy Digital is a next generation digital collectible company which has been launched by three titans of their respective industries: Michael Rubin, Executive Chairman, Fanatics; Mike Novogratz, founder and CEO, Galaxy Digital; and Gary Vaynerchuk, Serial Entrepreneur and Investor.\n\nCandy is building the ecosystem for official Major League Baseball collectable NFTs where fans and collectors will be able to purchase, trade, and share officially licensed NFTs to deepen their love of the sport. Candy’s team of world class digital artists, designers, and technologists are developing a broad range of digital collectibles, beginning with sports content and expanding into art, entertainment, music, and more.\n\nTerms & Conditions: https://bit.ly/3qXU7p7\nPrivacy Policy: https://bit.ly/3yEWY90",
"id": "bd3fc0c0-c7b6-4f6d-842b-de8cd1934550",
"imageUrl": "https://cdn.bitskistatic.com/clients-raw/90419700-e0fd-4e06-8901-8b73de32bcde/287c7414-fb2f-430c-9dbc-73ab41c1b386.gif",
"links": {
"instagram": "candydigital",
"twitter": "CandyDigital",
"website": "https://www.candy.com/"
},
"name": "Candy",
"type": "CREATOR",
"username": "Candy"
}
}
Parameters
string
required
The profile id or username
Examples
{
"profile": {
"connectedAccounts": [{
"externalId": "0xdcdc64fb0eeb0cc6d06b03f8616961989db1437f",
"id": "18c71561-8ea5-4a63-88d7-6931d2b32513",
"isPublic": true
}],
"description": "Candy Digital is a next generation digital collectible company which has been launched by three titans of their respective industries: Michael Rubin, Executive Chairman, Fanatics; Mike Novogratz, founder and CEO, Galaxy Digital; and Gary Vaynerchuk, Serial Entrepreneur and Investor.\n\nCandy is building the ecosystem for official Major League Baseball collectable NFTs where fans and collectors will be able to purchase, trade, and share officially licensed NFTs to deepen their love of the sport. Candy’s team of world class digital artists, designers, and technologists are developing a broad range of digital collectibles, beginning with sports content and expanding into art, entertainment, music, and more.\n\nTerms & Conditions: https://bit.ly/3qXU7p7\nPrivacy Policy: https://bit.ly/3yEWY90",
"id": "bd3fc0c0-c7b6-4f6d-842b-de8cd1934550",
"imageUrl": "https://cdn.bitskistatic.com/clients-raw/90419700-e0fd-4e06-8901-8b73de32bcde/287c7414-fb2f-430c-9dbc-73ab41c1b386.gif",
"links": {
"instagram": "candydigital",
"twitter": "CandyDigital",
"website": "https://www.candy.com/"
},
"name": "Candy",
"type": "CREATOR",
"username": "Candy"
}
}
⌘I