Find an API

Search public APIs with auth details & Postman guides

← All APIs

Svix API

svix · Company

Company No Auth Free & Open API

Welcome to the Svix API documentation! Useful links: [Homepage](https://www.svix.com) | [Support email](mailto:[email protected]) | [Blog](https://www.svix.com/blog/) | [Slack Community](https://www.svix.com/slack/) # Introduction This is the reference documentation and schemas for the [Svix webhook service](https://www.svix.com) API. For tutorials and other documentation please refer to [the documentation](https://docs.svix.com). ## Main concepts In Svix you have four important entitie

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET List Applications

List of all the organization's applications.

https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/app?limit=50&order=descending&iterator=app_1srOrx2ZWZBpBUvZwXKQmoEYga2

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/app/?limit=50&order=descending&iterator=app_1srOrx2ZWZBpBUvZwXKQmoEYga2"
import requests
params = {
    "limit": "50",
    "order": "descending",
    "iterator": "app_1srOrx2ZWZBpBUvZwXKQmoEYga2"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/app/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/app/');
url.searchParams.set('limit', '50');
url.searchParams.set('order', 'descending');
url.searchParams.set('iterator', 'app_1srOrx2ZWZBpBUvZwXKQmoEYga2');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/app/")
	q := baseURL.Query()
	q.Set("limit", "50")
	q.Set("order", "descending")
	q.Set("iterator", "app_1srOrx2ZWZBpBUvZwXKQmoEYga2")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	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/svix.com/1.4/api/v1/app/")
uri.query = URI.encode_www_form({
  "limit" => "50",
  "order" => "descending",
  "iterator" => "app_1srOrx2ZWZBpBUvZwXKQmoEYga2"
})

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/svix.com/1.4/api/v1/app/?" . http_build_query([
    "limit" => "50",
    "order" => "descending",
    "iterator" => "app_1srOrx2ZWZBpBUvZwXKQmoEYga2"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Background Tasks

List background tasks executed in the past 90 days.

https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/background-task?limit=50&order=descending&iterator=qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/background-task/?limit=50&order=descending&iterator=qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2"
import requests
params = {
    "limit": "50",
    "order": "descending",
    "iterator": "qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/background-task/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/background-task/');
url.searchParams.set('limit', '50');
url.searchParams.set('order', 'descending');
url.searchParams.set('iterator', 'qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/background-task/")
	q := baseURL.Query()
	q.Set("limit", "50")
	q.Set("order", "descending")
	q.Set("iterator", "qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	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/svix.com/1.4/api/v1/background-task/")
uri.query = URI.encode_www_form({
  "limit" => "50",
  "order" => "descending",
  "iterator" => "qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2"
})

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/svix.com/1.4/api/v1/background-task/?" . http_build_query([
    "limit" => "50",
    "order" => "descending",
    "iterator" => "qtask_1srOrx2ZWZBpBUvZwXKQmoEYga2"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List Event Types

Return the list of event types.

https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/event-type?limit=50&iterator=user.signup&with_content=false&include_archived=false

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/event-type/?limit=50&iterator=user.signup&with_content=false&include_archived=false"
import requests
params = {
    "limit": "50",
    "iterator": "user.signup",
    "with_content": "false",
    "include_archived": "false"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/event-type/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/event-type/');
url.searchParams.set('limit', '50');
url.searchParams.set('iterator', 'user.signup');
url.searchParams.set('with_content', 'false');
url.searchParams.set('include_archived', 'false');

const response = await fetch(url); 
const data = await response.json();
console.log(data);
package main

import (
	"fmt"
	"io"
	"net/http"
	"net/url"
)

func main() {
	baseURL, _ := url.Parse("https://api.apis.guru/v2/specs/svix.com/1.4/api/v1/event-type/")
	q := baseURL.Query()
	q.Set("limit", "50")
	q.Set("iterator", "user.signup")
	q.Set("with_content", "false")
	q.Set("include_archived", "false")
	baseURL.RawQuery = q.Encode()
	targetURL := baseURL.String()
	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/svix.com/1.4/api/v1/event-type/")
uri.query = URI.encode_www_form({
  "limit" => "50",
  "iterator" => "user.signup",
  "with_content" => "false",
  "include_archived" => "false"
})

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/svix.com/1.4/api/v1/event-type/?" . http_build_query([
    "limit" => "50",
    "iterator" => "user.signup",
    "with_content" => "false",
    "include_archived" => "false"
]);
$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

Get Postman ↗
  1. See official documentation for authentication and setup.

What can you build with Svix API?

Svix API is a Company API. Developers commonly use company APIs for:

  • enriching CRM records with company firmographics
  • building lead-generation and prospecting tools
  • verifying business identity and registration details
  • monitoring competitors and market intelligence
  • powering B2B data enrichment pipelines

No authentication required. This API is open — no signup or key needed. Ideal for quick prototypes and public-facing features. Svix API 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?

Open documentation ↗