Skip to main content

Get Your API Key

Before you can make API calls, you’ll need an API key from your InstaView dashboard.
1

Access the Dashboard

Log in to your InstaView dashboard
2

Navigate to API Settings

Go to SettingsAPI Keys
3

Create a New Key

Click Create API Key and select the scopes you need
4

Save Your Key

Copy and securely store your API key - you won’t be able to see it again!
Keep your API key secure! Never commit it to version control or expose it in client-side code. Use environment variables or secure secret management.

Make Your First Request

Let’s create your first job posting using the InstaView API.

Expected Response

Complete Workflow Example

A complete workflow: create a job, add a contact, configure an agent, and have it place the call.
1

Create a Job

Use the example above to create a job posting
2

Create a Contact

Add the person to call, and associate them with the job
3

Create an Agent

Configure the agent that will run the call
4

Create a Conversation

Schedule the call
5

Retrieve Results

Fetch the transcript and analysis

Understanding the Response Format

There is no envelope. A successful response body is the resource, as in the example above, and whether the call succeeded is carried by the HTTP status code rather than by a field in the body. A list endpoint returns a page object instead — the rows in data, the counts beside it:
An error is a flat object:
Every response also carries an x-trace-id header holding that same trace id. Quote it when you write to support.
Responses used to be wrapped in { statusCode, message, data, traceId }, which put list rows at data.data. An integration that predates the change keeps receiving the old shape until 4 September 2026, 00:00 Europe/Prague, and can tell because its responses carry a Sunset header until then. See the changelog. Anything you build today gets the shape above.
See Error Handling for the full list of status codes, and Pagination for the page object.

Next Steps

Authentication

Learn about API keys, scopes, and security best practices

Core Resources

Explore contacts, conversations, agents, jobs and more

Error Handling

Handle errors gracefully in your integration

API Reference

Browse complete API documentation
Pro Tip: Use our interactive API playground in the API Reference section to test endpoints without writing code!