Find an API

Search public APIs with auth details & Postman guides

← All APIs

1Password Connect

1password · Company

Company No Auth Free & Open security

REST API interface for 1Password Connect.

Authentication

No authentication requiredFree to use with no key needed.

Sample Requests

GET Retrieve a list of API Requests that have been made.

Retrieve a list of API Requests that have been made.

https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/activity?limit=10&offset=50

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/activity?limit=10&offset=50"
import requests
params = {
    "limit": "10",
    "offset": "50"
}
response = requests.get(
    "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/activity",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/activity');
url.searchParams.set('limit', '10');
url.searchParams.set('offset', '50');

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/1password.local/connect/1.5.7/activity")
	q := baseURL.Query()
	q.Set("limit", "10")
	q.Set("offset", "50")
	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/1password.local/connect/1.5.7/activity")
uri.query = URI.encode_www_form({
  "limit" => "10",
  "offset" => "50"
})

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/1password.local/connect/1.5.7/activity?" . http_build_query([
    "limit" => "10",
    "offset" => "50"
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get all Vaults

Get all Vaults

https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/vaults?filter=name eq "Some Vault Name"

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/vaults?filter=name%20eq%20%22Some%20Vault%20Name%22"
import requests
params = {
    "filter": "name eq "Some Vault Name""
}
response = requests.get(
    "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/vaults",
    params=params,
)
print(response.json())
const url = new URL('https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/vaults');
url.searchParams.set('filter', 'name eq "Some Vault Name"');

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/1password.local/connect/1.5.7/vaults")
	q := baseURL.Query()
	q.Set("filter", "name eq "Some Vault Name"")
	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/1password.local/connect/1.5.7/vaults")
uri.query = URI.encode_www_form({
  "filter" => "name eq "Some Vault Name""
})

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/1password.local/connect/1.5.7/vaults?" . http_build_query([
    "filter" => "name eq "Some Vault Name""
]);
$opts = ["http" => [
    "method" => "GET",
]];
$ctx = stream_context_create($opts);
$res = file_get_contents($url, false, $ctx);
print_r(json_decode($res, true));
GET Get state of the server and its dependencies.

Get state of the server and its dependencies.

https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/health

Hover any highlighted part to learn what it does

curl -X GET "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/health"
import requests
response = requests.get(
    "https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/health",
)
print(response.json())
const url = 'https://api.apis.guru/v2/specs/1password.local/connect/1.5.7/health';

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/1password.local/connect/1.5.7/health"
	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/1password.local/connect/1.5.7/health")

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/1password.local/connect/1.5.7/health";
$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 1Password Connect?

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

New to APIs? Read our beginner's guide

Open documentation ↗