ActionNetlifyUpdated June 2026

How do I fetch Netlify site details?

Short answer: You can get netlify site in Netlify by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Netlify Get Netlify Site action to a workflow, map its 1 input from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.

Get Netlify Site in Netlify — start free
Inputs

The fields this action accepts.

Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.

FieldTypeRequiredDescription
Site ID
siteId
stringRequiredSite ID
Sample request
{
"siteId": "{{trigger.siteId}}"
}
Returns
{
"id": "site123",
"url": "https://my-site.netlify.app",
"name": "my-site",
"state": "ready",
"ssl_url": "https://my-site.netlify.app",
"admin_url": "https://app.netlify.com/sites/my-site",
"published_deploy": {
"id": "deploy123"
}
}

Use these fields in downstream nodes for routing, logging, or error handling.

Triggered by

Apps that pair well as the trigger for Get Netlify Site.

Any of these apps can fire this action as part of a workflow.

FAQ

Questions about Get Netlify Site.

What does the Get Netlify Site action do in Netlify?
Returns site metadata — name, URL, build settings, plan, recent activity. Useful for "audit site configuration" workflows.
What inputs does Get Netlify Site require?
Required: Site ID. Every input accepts a static value or a variable from any upstream node in your workflow.
Can I use dynamic inputs from earlier workflow nodes?
Yes. Any field on this action can pull values from upstream nodes, whether that's a form response, a trigger payload, an AI output, or a lookup result.
What happens if Netlify returns an error?
The workflow pauses on the failed node, the error message is captured in the run log, and you can retry the run with one click. Auto-retry policies are configurable per workflow with exponential backoff up to 5 attempts.
Does Get Netlify Site support batch operations?
Yes. Run Get Netlify Site inside a Loop node to process arrays. TinyCommand handles Netlify's rate limits automatically so you don't have to throttle manually.
More actions

Other Netlify actions.

Action
List Netlify Deploys
Paginated deploy history for a specific site with status filter. For deploy-history reporting and for "find last green deploy for rollback" workflows.
Action
List Netlify Sites
Returns all sites in the account. Useful for cross-site reporting and for resolving site IDs at workflow setup.
Action
Trigger Netlify Build
Manually triggers a build/deploy for a site. For "content changed in CMS → rebuild static site" or "scheduled daily rebuild for fresh data" patterns.
Get Netlify Site in Netlify — start free