Agent Access guide
GET /v1/agent-access — getAgentAccessGuide
import { client, AgentAccess } from 'anchorbrowser';
// ANCHORBROWSER_API_KEY is read from the environment by default;
// set it explicitly like this:
client.setConfig({ auth: () => 'your-api-key' });
const result = await AgentAccess.getAgentAccessGuide();
console.log(result);
from anchorbrowser import Anchorbrowser
# ANCHORBROWSER_API_KEY is read from the environment by default;
# set it explicitly with Anchorbrowser(api_key="your-api-key")
client = Anchorbrowser()
result = client.agent_access.get_agent_access_guide()
print(result)
Create Agent Access project
POST /v1/agent-access — createAgentAccessProject
import { client, AgentAccess } from 'anchorbrowser';
// ANCHORBROWSER_API_KEY is read from the environment by default;
// set it explicitly like this:
client.setConfig({ auth: () => 'your-api-key' });
const result = await AgentAccess.createAgentAccessProject({
body: {
token: 'string',
answer: 'string'
}
});
console.log(result);
from anchorbrowser import Anchorbrowser
# ANCHORBROWSER_API_KEY is read from the environment by default;
# set it explicitly with Anchorbrowser(api_key="your-api-key")
client = Anchorbrowser()
result = client.agent_access.create_agent_access_project(
token="string",
answer="string",
)
print(result)
Get Agent Access challenge
GET /v1/agent-access/challenge — getAgentAccessChallenge
import { client, AgentAccess } from 'anchorbrowser';
// ANCHORBROWSER_API_KEY is read from the environment by default;
// set it explicitly like this:
client.setConfig({ auth: () => 'your-api-key' });
const result = await AgentAccess.getAgentAccessChallenge();
console.log(result);
from anchorbrowser import Anchorbrowser
# ANCHORBROWSER_API_KEY is read from the environment by default;
# set it explicitly with Anchorbrowser(api_key="your-api-key")
client = Anchorbrowser()
result = client.agent_access.get_agent_access_challenge()
print(result)
Agent Access challenge data
GET /v1/agent-access/appendix/{appendixRef} — getAgentAccessAppendix
import { client, AgentAccess } from 'anchorbrowser';
// ANCHORBROWSER_API_KEY is read from the environment by default;
// set it explicitly like this:
client.setConfig({ auth: () => 'your-api-key' });
const result = await AgentAccess.getAgentAccessAppendix({
path: {
appendixRef: 'your-appendixRef'
}
});
console.log(result);
from anchorbrowser import Anchorbrowser
# ANCHORBROWSER_API_KEY is read from the environment by default;
# set it explicitly with Anchorbrowser(api_key="your-api-key")
client = Anchorbrowser()
result = client.agent_access.get_agent_access_appendix(
"your-appendix-ref",
)
print(result)

