Scrapeless API
latest
  • latest
  • v1
Dashboard
Dashboard
latest
  • latest
  • v1
  1. 1Password
  • User
    • Get User Info
      GET
  • Scraping Browser
    • CDP API
    • Browser extensions
      • Upload extension
      • Upgrade extension
      • Delete extension
      • Extension info
      • Extension list
    • Browser profiles
      • Profile list
      • Profile info
      • Delete profile
      • Upgrade profile
      • Create profile
    • 1Password
      • Create 1Password Integration
        PUT
      • Revoke 1Password Authorization
        DELETE
      • Get Single Secret
        POST
      • Get Multiple Secrets
        POST
    • TeamCredentials
      • Create Credential
      • Update Credential
      • Delete Credential
      • Get Credential
    • Connect
      WSS
    • Running sessions
      GET
    • Live URL
      GET
  • Scraping API
    • shopee
      • Actor List
      • Shopee Product
      • Shopee Search
      • Shopee Rcmd
    • br sites
      • Solucoes cnpjreva
      • Solucoes certidaointernet
      • Servicos receita
      • Consopt
    • amazon
      • API Parameters
      • product
      • seller
      • keywords
    • google search
      • API Parameters
      • Google Search:Advanced search parameters(tbs)
      • Google Search
      • Google Images
      • Google Local
      • Google Shopping
      • Google Videos
    • google trends
      • API Parameters
      • AutoComplete
      • Interest Over Time
      • Compared Breakdown By Region
      • Interest By Subregion
      • Related Queries
      • Related Topics
      • Trending Now
    • Scraper Request
      POST
    • Scraper GetResult
      GET
  • Universal Scraping API
    • JS Render Docs
    • JS Render
      POST
    • Web Unlocker
      POST
  • Crawler
    • Scrape
      • Scrape a single URL
      • Scrape multiple URLs
      • Cancel a batch scrape job
      • Get the status of a scrape
      • Get the status of a batch scrape job
      • Get the errors of a batch scrape job
    • Crawl
      • Crawl multiple URLs based on options
      • Cancel a crawl job
      • Get the status of a crawl job
      • Get the errors of a crawl job
  • Public
    • actor status
    • actor status
  1. 1Password

Get Multiple Secrets

POST
/browser/one-password/secrets
Last modified:2025-11-06 06:24:53
Retrieve multiple secret values from your 1Password vault in a single request. Supports parallel retrieval with independent processing for each secret - partial failures won't affect other secrets.

Request

Authorization
or
Header Params

Body Params application/json

Example
{
    "references": [
        "vaults/production_vault_id/items/database_credentials_item_id",
        "vaults/production_vault_id/items/api_key_item_id",
        "vaults/shared_vault_id/items/stripe_key_item_id"
    ]
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.scrapeless.com/browser/one-password/secrets' \
--header 'x-api-token;' \
--header 'Content-Type: application/json' \
--data-raw '{
    "references": [
        "vaults/production_vault_id/items/database_credentials_item_id",
        "vaults/production_vault_id/items/api_key_item_id",
        "vaults/shared_vault_id/items/stripe_key_item_id"
    ]
}'

Responses

🟢200OK
application/json
Secret list retrieved successfully (includes both successful and failed results)
Body

Example
{
    "secrets": [
        {
            "reference": "string",
            "secret": "string",
            "error": "string"
        }
    ]
}
Modified at 2025-11-06 06:24:53
Previous
Get Single Secret
Next
Create Credential
Built with