REST API connector development(Rockset)

How do I go about developing a connector whose API request has a structure like this. Can anyone point me to similar examples where a similar structure is used to build a connector.

curl --request POST
–url https://api.use1a1.rockset.com/v1/orgs/self/ws/commons/lambdas/newmovie/tags/latest
-H “Authorization: ApiKey $ROCKSET_APIKEY”
-H ‘Content-Type: application/json’
-d ‘{
“parameters”: [
{
“name”: “user_id”,
“type”: “int”,
“value”: “41”
}
]
}’
| python -m json.tool

Hey could you help me with more information? Like why do you think the API is different from other connector APIs?