Hey all, Iโm trying to query information in n8n from my Clay table, but Iโm having some trouble with the API. Iโve got my curl set up like this: curl -X GET โhttps://api.clay.com/v3/tables/{tableid}/rowsโ \ -H โAuthorization: Bearer {api_key}โ \ -H โAccept: application/jsonโ Can anyone confirm if this looks right? Iโm specifically trying to pull rows from my table and want to make sure Iโm hitting the correct endpoint. Very hard finding any resources regarding the api documentation online
Clay currently doesn't have exposed API endpoints that can be directly queried from outside the platform. Instead of trying to pull data directly from Clay tables, here's how you can work with Clay programmatically: 1. Use webhooks to send input data into Clay 2. Process and enrich your data within Clay as needed 3. Use Clay's HTTP API integration to send the output data to other services (like n8n)For more details on implementation, you can check these resources: ** How to send data to Clay via webhooks: https://docs.clay.com/en/articles/9730014-import-data-to-clay-using-webhooks ** How to push data to other applications: https://docs.clay.com/en/articles/9672489-http-api-with-clay * Video tutorial on HTTP API integration: https://www.loom.com/share/114ff06973bd4ed7985b32fa031be867
Thanks! We've reopened this thread. You can continue to add more detail directly in this thread.
I noticed you were trying to reopen this ticket. Just to clarify - Clay currently only supports sending to webhooks, not to specific row values. Let me know if you need help with webhook setup instead!
