Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
openapi: 3.2.0
info:
title: api-key-manager > admin Transact API
version: 1.0.0
servers:
- url: https://api.syndicate.io
description: Production
tags:
- name: transact
paths:
/transact/sendTransaction:
post:
operationId: send-transaction
summary: Send Transaction
description: Send transaction to blockchain
tags:
- transact
parameters:
- name: Authorization
in: header
description: Bearer authentication
required: true
schema:
type: string
responses:
'200':
description: Response with status 200
content:
application/json:
schema:
$ref: '#/components/schemas/type_transact_SendTransactionResponse'
'400':
description: Error response with status 400
content:
application/json:
schema:
$ref: '#/components/schemas/type_transact_ErrorBody'
'409':
description: Error response with status 409
content:
application/json:
schema:
$ref: '#/components/schemas/type_transact_ErrorBody'
'422':
description: Error response with status 422
content:
application/json:
schema:
$ref: '#/components/schemas/type_transact_ErrorBody'
'500':
description: Error response with status 500
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/type_transact_SendTransactionRequest'
components:
schemas:
type_transact_ErrorBody:
type: object
properties:
message:
type: string
required:
- message
title: ErrorBody
type_transact_SendTransactionRequest:
type: object
properties:
requestId:
type: string
format: uuid
description: (Optional) ID of the request. Needs to be a valid UUID. If provided, it will be saved and returned as the transactionId of the response. If not provided, we will generate one for you and return it as the transactionId.
projectId:
type: string
format: uuid
description: ID of the project you want this request to be sent from
contractAddress:
type: string
description: The contract address to send request to
chainId:
type: integer
format: int64
description: The chain ID for the network (e.g. 1 for Ethereum Mainnet, 137 for Polygon Mainnet, 80001 for Polygon Mumbai). For a complete list of chain IDs, see [ChainList](https://chainlist.org/?search=&testnets=true).
functionSignature:
type: string
description: The human readable signature to call on the contract
args:
type: object
additionalProperties:
description: Any type
description: (Optional) The function arguments for the transaction if any. The keys are the argument names or index from the provided function signature and the values are the argument values.
required:
- projectId
- contractAddress
- chainId
- functionSignature
title: SendTransactionRequest
type_transact_SendTransactionResponse:
type: object
properties:
transactionId:
type: string
format: uuid
required:
- transactionId
title: SendTransactionResponse
securitySchemes:
default:
type: http
scheme: bearer