Endpoints
GetContract
Transacciones
- Resumen
- Instalación
- Endpoints
- Ejemplos
Indexador
- Resumen
- Instalación
- Endpoints
- Ejemplos
Gateway del Indexador
Analíticas
- Descripción general
- Endpoints
- Ejemplos
Metadatos
- Resumen
- Endpoints
- Ejemplos
Infraestructura
- Resumen
- Endpoints
Builder
Marketplace
- Resumen
- Endpoints
- Ejemplos
RPC Blockchain
Endpoints
GetContract
POST
/
rpc
/
Builder
/
GetContract
curl --request POST \
--url https://api.sequence.app/rpc/Builder/GetContract \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"id": 123
}'
{
"contract": {
"id": 123,
"projectId": 123,
"contractName": "<string>",
"contractAddress": "<string>",
"contractType": "<string>",
"chainId": 123,
"source": "LINKED",
"itemsContractAddress": "<string>",
"abi": "<string>",
"bytecode": "<string>",
"bytecodeHash": "<string>",
"audienceId": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
}
Authorizations
Public project access key for authenticating requests obtained on Sequence Builder. Example Test Key: AQAAAAAAAEGvyZiWA9FMslYeG_yayXaHnSI
Body
application/json
Response
200
application/json
OK
The response is of type object
.
¿Esta página le ayudó?
curl --request POST \
--url https://api.sequence.app/rpc/Builder/GetContract \
--header 'Content-Type: application/json' \
--header 'X-Access-Key: <api-key>' \
--data '{
"id": 123
}'
{
"contract": {
"id": 123,
"projectId": 123,
"contractName": "<string>",
"contractAddress": "<string>",
"contractType": "<string>",
"chainId": 123,
"source": "LINKED",
"itemsContractAddress": "<string>",
"abi": "<string>",
"bytecode": "<string>",
"bytecodeHash": "<string>",
"audienceId": 123,
"createdAt": "<string>",
"updatedAt": "<string>"
}
}