Find an API

Search public APIs with auth details & Postman guides

← All APIs

Apacta

apacta · Company

Company No Auth Free & Open time_management project_management

API for a tool to craftsmen used to register working hours, material usage and quality assurance. # Endpoint The endpoint `https://app.apacta.com/api/v1` should be used to communicate with the API. API access is only allowed with SSL encrypted connection (https). # Authentication URL query authentication with an API key is used, so appending `?api_key={api_key}` to the URL where `{api_key}` is found within Apacta settings is used for authentication # Pagination If the endpoint returns a `paginat

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Get list of cities supported in Apacta

Get list of cities supported in Apacta

https://api.apis.guru/v2/specs/apacta.com/0.0.42/cities?name=test&zip_code=example&include_all=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/apacta.com/0.0.42/cities?name=test&zip_code=example&include_all=true"
import requests
params = {
    "name": "test",
    "zip_code": "example",
    "include_all": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apacta.com/0.0.42/cities",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apacta.com/0.0.42/cities');
url.searchParams.set('name', 'test');
url.searchParams.set('zip_code', 'example');
url.searchParams.set('include_all', 'true');

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/apacta.com/0.0.42/cities")
	q := baseURL.Query()
	q.Set("name", "test")
	q.Set("zip_code", "example")
	q.Set("include_all", "true")
	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/apacta.com/0.0.42/cities")
uri.query = URI.encode_www_form({
  "name" => "test",
  "zip_code" => "example",
  "include_all" => "true"
})

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/apacta.com/0.0.42/cities?" . http_build_query([
    "name" => "test",
    "zip_code" => "example",
    "include_all" => "true"
]);
$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 clocking records

Get a list of clocking records

https://api.apis.guru/v2/specs/apacta.com/0.0.42/clocking_records?active=true

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/apacta.com/0.0.42/clocking_records?active=true"
import requests
params = {
    "active": "true"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apacta.com/0.0.42/clocking_records",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apacta.com/0.0.42/clocking_records');
url.searchParams.set('active', 'true');

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/apacta.com/0.0.42/clocking_records")
	q := baseURL.Query()
	q.Set("active", "true")
	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/apacta.com/0.0.42/clocking_records")
uri.query = URI.encode_www_form({
  "active" => "true"
})

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/apacta.com/0.0.42/clocking_records?" . http_build_query([
    "active" => "true"
]);
$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 company settings

Get a list of company settings

https://api.apis.guru/v2/specs/apacta.com/0.0.42/company_settings?name=test&description=test

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/apacta.com/0.0.42/company_settings?name=test&description=test"
import requests
params = {
    "name": "test",
    "description": "test"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/apacta.com/0.0.42/company_settings",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/apacta.com/0.0.42/company_settings');
url.searchParams.set('name', 'test');
url.searchParams.set('description', 'test');

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/apacta.com/0.0.42/company_settings")
	q := baseURL.Query()
	q.Set("name", "test")
	q.Set("description", "test")
	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/apacta.com/0.0.42/company_settings")
uri.query = URI.encode_www_form({
  "name" => "test",
  "description" => "test"
})

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/apacta.com/0.0.42/company_settings?" . http_build_query([
    "name" => "test",
    "description" => "test"
]);
$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 Apacta?

Apacta 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. Apacta 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 ↗