GraphQL API

Ethereum

Endpoint

https://api.para.space/graphql/ethereum

API Key

To access our API, you need the “X-API-KEY” in the request header.

Please contact kush@para.space to verify your identification and obtain the API key.

Get Owned AA of EOA

return all owned AA accounts to the master EOA address.

Query

query ParaAccounts($filter: ParaAccountFilter) {
    paraAccounts(filter: $filter) {    
        paraAccount    
        EOAAccount    
        createdHash    
        createdBlockHeight
    }
}

Variables

{
    "filter": {
        "EOAAccount": "your EOA address"
    }
}

Results

{
  "data": {
    "paraAccounts": [
      {
        "paraAccount": "your AA address",
        "EOAAccount": "your EOA address",
        "createdHash": "the transaction of AA created",
        "createdBlockHeight": "transaction block number"
      }
    ]
  }
}

Last updated