POST
/
projects
/
auth
curl --request POST \
  --url https://protocol-sandbox.lumx.io/v2/projects/auth \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "blockchainName": "Ethereum"
}'
{
  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "name": "<string>",
  "blockchain": {
    "name": "Ethereum",
    "decimalChainId": 123
  },
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z",
  "apiKey": "<string>"
}

Body

application/json
name
string
required

The name of the project.

blockchainName
enum<string>
required

The blockchain of the project.

Available options:
Ethereum,
Polygon,
Chiliz,
Optimism,
Linea

Response

201 - application/json
id
string

The ID of the project.

name
string

The name of the project.

blockchain
object

The blockchain of the project.

createdAt
string

The timestamp from when the project was created.

updatedAt
string

The timestamp from when the project was last updated.

apiKey
string

The API key of the project.