We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
i can't seem to get any results returned back from this BRC-20 API endpoint when passing in tickers as an array of strings:
curl example: curl -X GET "https://api.hiro.so/ordinals/v1/brc-20/tokens?ticker=%5B%22piza%22%2C%22pepe%22%5D"
curl -X GET "https://api.hiro.so/ordinals/v1/brc-20/tokens?ticker=%5B%22piza%22%2C%22pepe%22%5D"
js fetch example:
const baseUrl = "https://api.hiro.so/ordinals/v1/brc-20/tokens" const params = new URLSearchParams({ ticker: ["piza", "pepe"] }) const urlWithParams = `${baseUrl}?${params.toString()}` let result = await fetch(urlWithParams, { method: "GET", headers: { "Content-Type": "application/json", Accept: "application/json" } }) let response = await result.json() console.log(response)
response: {"limit":20,"offset":0,"total":0,"results":[]}
ref: https://docs.hiro.so/bitcoin/ordinals/api/brc20/get-brc20-tokens (e
The text was updated successfully, but these errors were encountered:
No branches or pull requests
i can't seem to get any results returned back from this BRC-20 API endpoint when passing in tickers as an array of strings:
curl example:
curl -X GET "https://api.hiro.so/ordinals/v1/brc-20/tokens?ticker=%5B%22piza%22%2C%22pepe%22%5D"
js fetch example:
response:
{"limit":20,"offset":0,"total":0,"results":[]}
ref:
https://docs.hiro.so/bitcoin/ordinals/api/brc20/get-brc20-tokens (e
The text was updated successfully, but these errors were encountered: