Skip to content

Query Corporate Action Processing Status

Endpoint: GET /api/v1/maker/corporate-actions/token/{token}/processing-status

Description: Query if there are corporate actions being processed

Authentication: JWT token in Authorization header

Request Parameters:

FieldTypeRequiredDescription
tokenstringYesRoute parameter, stock token address

Response Parameters

FieldTypeDescription
codeintResult code. 0 for success
dataobjectResult object
data.is_processingboolWhether there are corporate actions being processed

Request Example

bash
curl "api/v1/corporate-actions/maker/0x5fc23eB93208F58e29A1AC493dc15FD0b0Cb5C92/token/0x1c6611cde556f439252c2845c33702c3035fe351/processing-status"

Response Example

json
{
  "code": 0,
  "data": {
    "is_processing": false
  }
}