Skip to main content
POST
/
api
/
snapshot
/
spaces
/snapshot/spaces
curl --request POST \
  --url https://api.anysite.io/api/snapshot/spaces \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "space": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "SnapshotSpace",
    "name": "<string>",
    "description": "<string>",
    "network": "<string>",
    "symbol": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "domain": "<string>",
    "website_url": "<string>",
    "terms_url": "<string>",
    "twitter": "<string>",
    "github": "<string>",
    "farcaster": "<string>",
    "coingecko": "<string>",
    "email": "<string>",
    "guidelines": "<string>",
    "template": "<string>",
    "members": [],
    "admins": [],
    "moderators": [],
    "categories": [],
    "follower_count": 123,
    "proposal_count": 123,
    "vote_count": 123,
    "active_proposal_count": 123,
    "rank": 123,
    "follower_count_7d": 123,
    "proposal_count_1d": 123,
    "proposal_count_7d": 123,
    "proposal_count_30d": 123,
    "vote_count_7d": 123,
    "min_score": 123,
    "only_members": true,
    "is_verified": true,
    "is_flagged": true,
    "is_hibernated": true,
    "is_turbo": true,
    "is_private": true,
    "created_at": 123,
    "voting": {
      "@type": "SnapshotSpaceVoting",
      "delay": 123,
      "period": 123,
      "type": "<string>",
      "quorum": 123,
      "quorum_type": "<string>",
      "blind": true,
      "privacy": "<string>",
      "aliased": true,
      "hide_abstain": true
    },
    "strategies": [],
    "validation": {
      "name": "<string>",
      "@type": "SnapshotSpaceValidation",
      "params": {}
    },
    "vote_validation": {
      "name": "<string>",
      "@type": "SnapshotSpaceValidation",
      "params": {}
    },
    "treasuries": [],
    "parent": {
      "id": "<string>",
      "@type": "SnapshotSpaceRef",
      "name": "<string>",
      "image": "<string>",
      "network": "<string>"
    },
    "children": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
space
string
required

Space id (ENS-style name)

Minimum string length: 1
Examples:

"ens.eth"

"aave.eth"

"uniswapgovernance.eth"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:SnapshotSpace
name
string | null
description
string | null
network
string | null
symbol
string | null
image
string | null
cover
string | null
domain
string | null
website_url
string | null
terms_url
string | null
twitter
string | null
github
string | null
farcaster
string | null
coingecko
string | null
email
string | null
guidelines
string | null
template
string | null
members
string[]
admins
string[]
moderators
string[]
categories
string[]
follower_count
integer | null
proposal_count
integer | null
vote_count
integer | null
active_proposal_count
integer | null
rank
integer | null
follower_count_7d
integer | null
proposal_count_1d
integer | null
proposal_count_7d
integer | null
proposal_count_30d
integer | null
vote_count_7d
integer | null
min_score
number | null
only_members
boolean | null
is_verified
boolean | null
is_flagged
boolean | null
is_hibernated
boolean | null
is_turbo
boolean | null
is_private
boolean | null
created_at
integer | null
voting
object
strategies
object[]
validation
object
vote_validation
object
treasuries
object[]
parent
object
children
object[]