You will find here grinfi.io Public API documentation
https://leadgen.grinfi.io/
https://leadgen.grinfi.io/leads/api/lists
curl -i -X GET \
  'https://leadgen.grinfi.io/leads/api/lists?limit=20&name=string&offset=0&order_field=created_at&order_type=asc&q=string&user_id=string&uuid=string' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'[ { "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" } ]
https://leadgen.grinfi.io/leads/api/lists
curl -i -X POST \
  https://leadgen.grinfi.io/leads/api/lists \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "name": "CMO Germany"
  }'{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }
https://leadgen.grinfi.io/leads/api/lists/{uuid}
curl -i -X GET \
  'https://leadgen.grinfi.io/leads/api/lists/{uuid}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>'{ "uuid": "uuid-uuid-uuid-uuid-example", "team_id": 1, "name": "CMO Germany" }