Query tag
curl --request POST \
--url https://subgraph.api.ormilabs.com/public_api/v1/0xgraph/query_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"subgraph_name": "<string>",
"version": "<string>"
}'
[
{
"code": 123,
"msg": "<string>",
"data": {
"tags": [
{
"tag": "<string>",
"create_time": 123
}
]
}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object[]
.
curl --request POST \
--url https://subgraph.api.ormilabs.com/public_api/v1/0xgraph/query_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"subgraph_name": "<string>",
"version": "<string>"
}'
[
{
"code": 123,
"msg": "<string>",
"data": {
"tags": [
{
"tag": "<string>",
"create_time": 123
}
]
}
}
]
Query tag
curl --request POST \
--url https://subgraph.api.ormilabs.com/public_api/v1/0xgraph/query_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"subgraph_name": "<string>",
"version": "<string>"
}'
[
{
"code": 123,
"msg": "<string>",
"data": {
"tags": [
{
"tag": "<string>",
"create_time": 123
}
]
}
}
]
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
OK
The response is of type object[]
.
curl --request POST \
--url https://subgraph.api.ormilabs.com/public_api/v1/0xgraph/query_tag \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"subgraph_name": "<string>",
"version": "<string>"
}'
[
{
"code": 123,
"msg": "<string>",
"data": {
"tags": [
{
"tag": "<string>",
"create_time": 123
}
]
}
}
]