# Get Industrial Plate Info

get_industrial_plate_info(plate_id)

  • Description

    Get industrial plate info, returning the summary information of the specified industrial plate.

  • Parameters

    Parameter Type Description
    plate_id int Industrial plate ID
  • Return

    Parameter Type Description
    ret RET_CODE API call result
    data dict When ret == RET_OK, returns dict data
    str When ret != RET_OK, returns error description
    • Data format:
      Field Type Description
      plate_id int Industrial plate ID
      summary str Plate summary
  • Example

from futu import *

quote_ctx = OpenQuoteContext(host='127.0.0.1', port=11111)

ret, data = quote_ctx.get_industrial_plate_info(plate_id=10010508)
if ret == RET_OK:
    for k, v in data.items():
        print(f"{k}: {v}")
else:
    print('error:', data)

quote_ctx.close()
1
2
3
4
5
6
7
8
9
10
11
12
  • Output
plate_id: 10010508
summary: N/A
1
2

API Limits

  • Maximum 60 requests within 30 seconds
  • Only the first page of paginated requests counts towards rate limiting