Zapier Natural Language Actions (NLA) API - Beta
zapier · Developer Tools
## Hi, there! Welcome to the **Zapier Natural Language Actions API docs**. You are currently viewing the **root** API. The endpoints of this **root** API are static and useful for reference. To see the live playground with dynamic API endpoints that match up to your own **actions**, [log in first](/login/zapier/), then go here: **[NLA Dynamic API](/api/v1/dynamic/docs).** ## Overview
Authentication
Sample Requests
Test that the API and auth are working.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/check/";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));If the user wants to execute actions that are not exposed, they can go here to configure and expose more.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/configuration-link/";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));List all the currently exposed actions for the given account.
Hover any highlighted part to learn what it does
curl -X GET "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/"
import requests
response = requests.get(
"https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/",
)
print(response.json())const url = 'https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/'; const response = await fetch(url); const data = await response.json(); console.log(data);
package main
import (
"fmt"
"io"
"net/http"
)
func main() {
targetURL := "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/"
req, _ := http.NewRequest("GET", targetURL, nil)
client := &http.Client{}
resp, _ := client.Do(req)
defer resp.Body.Close()
body, _ := io.ReadAll(resp.Body)
fmt.Println(string(body))
}require "net/http"
require "json"
uri = URI("https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/")
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = uri.scheme == "https"
req = Net::HTTP::Get.new(uri)
res = http.request(req)
puts JSON.parse(res.body)<?php
$url = "https://api.apis.guru/v2/specs/zapier.com/nla/1.0.0/api/v1/exposed/";
$opts = ["http" => [
"method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));Postman Setup Guide
- See official documentation for authentication and setup.
What can you build with Zapier Natural Language Actions (NLA) API - Beta?
Zapier Natural Language Actions (NLA) API - Beta is a Developer Tools API. Developers commonly use developer tools APIs for:
- automating code review and quality checks
- integrating CI/CD pipelines and build systems
- managing feature flags and A/B tests
- monitoring errors and application performance
- generating and validating test data
No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Zapier Natural Language Actions (NLA) API - Beta is free to use, making it a low-risk choice to experiment with.
New to APIs? Read our beginner's guide · Learn about API keys · What is REST?