Get the Solana integration manifest
curl --request GET \
--url https://api.blank.build/api/v2/solana/manifestimport requests
url = "https://api.blank.build/api/v2/solana/manifest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.blank.build/api/v2/solana/manifest', 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.blank.build/api/v2/solana/manifest",
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.blank.build/api/v2/solana/manifest"
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.blank.build/api/v2/solana/manifest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blank.build/api/v2/solana/manifest")
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{
"apiVersion": "2",
"idl": {
"feeSplitter": "<string>",
"staking": "<string>",
"tokenomics": "<string>"
},
"launchSigner": "11111111111111111111111111111111",
"limits": {
"activeApiKeysPerEnvironment": 123,
"metadataUriBytes": 123,
"transactionSafeBytes": 123,
"transactionSolanaBytes": 123
},
"lookupTable": "11111111111111111111111111111111",
"manifestVersion": "<string>",
"programIds": {
"dbc": "11111111111111111111111111111111",
"feeSplitter": "11111111111111111111111111111111",
"staking": "11111111111111111111111111111111",
"tokenomics": "11111111111111111111111111111111"
},
"sdkVersion": "4.0.0"
}{
"code": "rate_limit_exceeded",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 429,
"title": "Rate limit exceeded",
"type": "https://blank.build/docs/reference/errors#rate_limit_exceeded",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}{
"code": "internal_error",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 500,
"title": "Internal server error",
"type": "https://blank.build/docs/reference/errors#internal_error",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}{
"code": "manifest_unavailable",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 503,
"title": "Manifest unavailable",
"type": "https://blank.build/docs/reference/errors#manifest_unavailable",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}System
Get the Solana integration manifest
Returns the v2 program addresses, public IDL URLs, and transaction limits for the active environment.
GET
/
solana
/
manifest
Get the Solana integration manifest
curl --request GET \
--url https://api.blank.build/api/v2/solana/manifestimport requests
url = "https://api.blank.build/api/v2/solana/manifest"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.blank.build/api/v2/solana/manifest', 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.blank.build/api/v2/solana/manifest",
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.blank.build/api/v2/solana/manifest"
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.blank.build/api/v2/solana/manifest")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.blank.build/api/v2/solana/manifest")
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{
"apiVersion": "2",
"idl": {
"feeSplitter": "<string>",
"staking": "<string>",
"tokenomics": "<string>"
},
"launchSigner": "11111111111111111111111111111111",
"limits": {
"activeApiKeysPerEnvironment": 123,
"metadataUriBytes": 123,
"transactionSafeBytes": 123,
"transactionSolanaBytes": 123
},
"lookupTable": "11111111111111111111111111111111",
"manifestVersion": "<string>",
"programIds": {
"dbc": "11111111111111111111111111111111",
"feeSplitter": "11111111111111111111111111111111",
"staking": "11111111111111111111111111111111",
"tokenomics": "11111111111111111111111111111111"
},
"sdkVersion": "4.0.0"
}{
"code": "rate_limit_exceeded",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 429,
"title": "Rate limit exceeded",
"type": "https://blank.build/docs/reference/errors#rate_limit_exceeded",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}{
"code": "internal_error",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 500,
"title": "Internal server error",
"type": "https://blank.build/docs/reference/errors#internal_error",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}{
"code": "manifest_unavailable",
"detail": "<string>",
"instance": "<string>",
"requestId": "req_0123456789abcdef0123456789abcdef",
"status": 503,
"title": "Manifest unavailable",
"type": "https://blank.build/docs/reference/errors#manifest_unavailable",
"causes": [
{
"detail": "<string>",
"title": "<string>",
"context": {}
}
],
"context": {},
"errors": [
{
"code": "<string>",
"message": "<string>",
"path": "<string>"
}
]
}Response
The active Solana integration manifest.
Available options:
2 Available options:
development, staging, production Show child attributes
Show child attributes
Pattern:
^[1-9A-HJ-NP-Za-km-z]{32,44}$Example:
"11111111111111111111111111111111"
Show child attributes
Show child attributes
Pattern:
^[1-9A-HJ-NP-Za-km-z]{32,44}$Example:
"11111111111111111111111111111111"
Minimum string length:
1Show child attributes
Show child attributes
Minimum string length:
1Example:
"4.0.0"
⌘I