Quickstart
Get started with the Greptile API
This guide will help you set up the Greptile API to answer hard questions about your codebase. There are only three steps, setting up permissions, indexing, and querying.
Base URL: https://api.greptile.com/v2/
.
Permissions
You’ll need a Greptile API key and a GitHub token, such as a personal access token, or tokens from GitHub Apps or GitHub OAuth apps. For this example, we will use a PAT to authenticate requests.
-
Greptile API key — Click here to get your Greptile key. You will need to log in via GitHub or Microsoft.
-
GitHub Token — Click here to generate a PAT. Greptile needs read access to your GitHub repositories, in order to index them. You can provision a GitHub PAT by following this guide from GitHub. Make sure to select the
repo
scope when creating the token, as this is required for Greptile to clone your repositories. Support for GitLab and Azure DevOps is coming soon! You can also use other types of GitHub tokens, such as GitHub Apps or GitHub OAuth apps.
Indexing
Before Greptile can search and answer questions about a repository, it must be indexed. This can take 3-5 minutes for small repositories, and over an hour for bigger ones, but you only need to do this once. Each index that Greptile generates is stored in our database.
- Submit a repository for indexing
You can use the POST /repositories
endpoint to submit a repository indexing job.
See our API Reference for more details and to send test requests.
- Check repository indexing progress
You can use the GET /repositories/{repositoryId}
endpoint to check the status of a repository’s index. The repositoryId
should be URL-encoded in the format remote:branch:owner/repository
.
The JSON response has a status
field which should be one of the following options:
submitted
: the job is in queue.cloning
: the repository is being cloned to ephemeral storage to begin indexing.processing
: indexing is in progress. This is the longest step.completed
: the repository index is ready to be queried!
If there is a sha
in the response, it means the repository has been indexed and is ready to be queried. We may just be processing updates from a newer commit.
See our API Reference for more details and to send test requests.
Query
Now, you can send natural language queries to Greptile! To do this, use the POST /query
endpoint. Note that this endpoint is based on the OpenAI Chat format, so the query must be formatted as a messages
object, which can simply have length 1.
See our API Reference for more details and to send test requests.
Need inspiration? Check out some examples of what you can build with Greptile.
If you have any questions, please reach out to us at support@greptile.com.