Find an API

Search public APIs with auth details & Postman guides

← All APIs

API v1

formapi · Company

Company No Auth Free & Open text

DocSpring is a service that helps you fill out and sign PDF templates.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get a list of all combined submissions

Get a list of all combined submissions

https://api.apis.guru/v2/specs/formapi.io/v1/combined_submissions?page=1&per_page=10

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/formapi.io/v1/combined_submissions?page=1&per_page=10"
import requests
params = {
    "page": "1",
    "per_page": "10"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/formapi.io/v1/combined_submissions",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/formapi.io/v1/combined_submissions');
url.searchParams.set('page', '1');
url.searchParams.set('per_page', '10');

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/formapi.io/v1/combined_submissions")
	q := baseURL.Query()
	q.Set("page", "1")
	q.Set("per_page", "10")
	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/formapi.io/v1/combined_submissions")
uri.query = URI.encode_www_form({
  "page" => "1",
  "per_page" => "10"
})

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/formapi.io/v1/combined_submissions?" . http_build_query([
    "page" => "1",
    "per_page" => "10"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get a list of all folders

Get a list of all folders

https://api.apis.guru/v2/specs/formapi.io/v1/folders?parent_folder_id=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/formapi.io/v1/folders/?parent_folder_id=example"
import requests
params = {
    "parent_folder_id": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/formapi.io/v1/folders/",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/formapi.io/v1/folders/');
url.searchParams.set('parent_folder_id', 'example');

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/formapi.io/v1/folders/")
	q := baseURL.Query()
	q.Set("parent_folder_id", "example")
	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/formapi.io/v1/folders/")
uri.query = URI.encode_www_form({
  "parent_folder_id" => "example"
})

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/formapi.io/v1/folders/?" . http_build_query([
    "parent_folder_id" => "example"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET List all submissions

List all submissions

https://api.apis.guru/v2/specs/formapi.io/v1/submissions?type=json&limit=10&cursor=example&include_data=true&created_after=example&created_before=example

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/formapi.io/v1/submissions?type=json&limit=10&cursor=example&include_data=true&created_after=example&created_before=example"
import requests
params = {
    "type": "json",
    "limit": "10",
    "cursor": "example",
    "include_data": "true",
    "created_after": "example",
    "created_before": "example"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/formapi.io/v1/submissions",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/formapi.io/v1/submissions');
url.searchParams.set('type', 'json');
url.searchParams.set('limit', '10');
url.searchParams.set('cursor', 'example');
url.searchParams.set('include_data', 'true');
url.searchParams.set('created_after', 'example');
url.searchParams.set('created_before', 'example');

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/formapi.io/v1/submissions")
	q := baseURL.Query()
	q.Set("type", "json")
	q.Set("limit", "10")
	q.Set("cursor", "example")
	q.Set("include_data", "true")
	q.Set("created_after", "example")
	q.Set("created_before", "example")
	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/formapi.io/v1/submissions")
uri.query = URI.encode_www_form({
  "type" => "json",
  "limit" => "10",
  "cursor" => "example",
  "include_data" => "true",
  "created_after" => "example",
  "created_before" => "example"
})

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/formapi.io/v1/submissions?" . http_build_query([
    "type" => "json",
    "limit" => "10",
    "cursor" => "example",
    "include_data" => "true",
    "created_after" => "example",
    "created_before" => "example"
]);
$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 API v1?

API v1 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. API v1 is free to use, making it a low-risk choice to experiment with.

New to APIs? Read our beginner's guide

Open documentation ↗