Create Developer App
POST/developer-apps
Create a new developer app. Indexer validates grants.
Request
Query Parameters
user_id stringrequired
The user ID of the user creating the developer app
- application/json
Body
required
name stringrequired
Developer app name
description string
App description
imageUrl string
App logo/image URL
Responses
- 200
- 400
- 401
- 500
Developer app created successfully
- application/json
- Schema
- Example (from schema)
Schema
api_key string
The API key (address) for the developer app
api_secret string
The private key for the developer app (for signing)
bearer_token string
The bearer token for API authentication (use in Authorization header)
transaction_hash string
Transaction hash of the creation
{
"api_key": "string",
"api_secret": "string",
"bearer_token": "string",
"transaction_hash": "string"
}
Bad request
Unauthorized
Server error
Loading...