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

Body

application/json
name
string

The name of the project.

blockchainName
enum<string>

The blockchain used by the project. More blockchains coming soon.

Available options:
Polygon

Response

201 - application/json
Created
id
string

The id of the project.

name
string

The name of the project.

blockchain
object

Details of the blockchain used by 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 associated with the project.