cURL
curl --request POST \ --url https://api.subgraph.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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
OK
The response is of type object[].
object[]