File ManagerAccount SettingsAccessing The SoftwareSupportTeam ManagementFull Demos
Certification
Status APIAnalysis Report APIReactions APIMember Displacements APIMember Forces APIMember Stresses APIMember Lengths APIMember Stations APIMember Discontinuities APIMember Minimums APIMember Maximums APIMember Peak Results APIPlate Displacements APIPlate Forces APIPlate Stresses APIPlate Minimums APIPlate Maximums APIPlate Peak Results APIBuckling API
Calling the API in Python where structure_data is the JSON Input object.
import json import httplib headers = { 'Content-Type' : 'application/json' }; conn = httplib.HTTPConnection('solver.skyciv.com', 80); # don't add http or https to this URL structure_data = json.dumps(structure_data, separators=(',', ':')); # convert to JSON String conn.request('POST', '/structural/v2.php', structure_data, headers); response = conn.getresponse(); response_data = response.read(); conn.close(); print(response_data);