Skip to main content
GET
/
v1
/
voting
/
proposals
Error
A valid request URL is required to generate request examples
{
  "proposals": [
    {
      "id": 0,
      "question": "<string>",
      "proposer": "<string>",
      "status": "pending",
      "category": "<string>",
      "rules": "<string>",
      "resolutionSources": "<string>",
      "imageUrl": "<string>",
      "voteCount": "<string>",
      "uniqueVoters": 4503599627370495,
      "isWinner": true,
      "finalVoteCount": 0,
      "submissionTime": 0,
      "createdAt": "<string>",
      "updatedAt": "<string>",
      "finalizedAt": "<string>",
      "rejectedAt": "<string>",
      "lastVoteAt": "<string>",
      "metadata": {}
    }
  ],
  "pagination": {
    "limit": 100,
    "nextCursor": "<string>",
    "page": 4503599627370495,
    "total": 4503599627370495
  }
}

Documentation Index

Fetch the complete documentation index at: https://aura-4ecab767.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key obtained from POST /v1/auth/keys.

Query Parameters

status
enum<string>
default:pending
Available options:
pending,
accepted,
rejected,
all
category
string
Required string length: 1 - 80
proposer
string

Alephium address (base58, optional :N group suffix).

Required string length: 30 - 80
Pattern: ^[123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz:]+$
activePeriodOnly
boolean
default:false
sort
enum<string>
default:created-at
Available options:
created-at,
vote-count,
unique-voters
order
enum<string>
default:desc
Available options:
asc,
desc
limit
integer
default:50
Required range: 1 <= x <= 200
cursor
string
page
integer
Required range: 0 <= x <= 9007199254740991

Response

Default Response

proposals
object[]
required
pagination
object
required

Pagination envelope returned alongside every list endpoint.