Get party
GEThttps://vega-data.nodes.guru:3008/api/v2/party/:partyId
Get a single party
Request
Path Parameters
partyId stringrequired
Party ID to retrieve party information for.
Responses
- 200
- 500
- default
A successful response.
- application/json
- Schema
- Example (from schema)
Schema
party object
{
"party": {
"alias": "string",
"id": "string",
"metadata": [
{
"key": "string",
"value": "string"
}
]
}
}
An internal server error
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
An unexpected error response.
- application/json
- Schema
- Example (from schema)
Schema
code int32
details object[]
message string
{
"code": 0,
"details": [
{
"@type": "string"
}
],
"message": "string"
}
- curl
- python
- go
- nodejs
- CURL
curl -L -X GET 'https://vega-data.nodes.guru:3008/api/v2/party/:partyId' \
-H 'Accept: application/json'
ResponseClear