Airtable API POST request fails with parameter validation error

u might be sending data instead of json in ur POST request. Airtable expects JSON format. Change it to requests.post(url=base_url, json=record_info) or add 'Content-Type': 'application/json' in headers, and wrap data with json.dumps().