MCPcopy Index your code
hub / github.com/digitalocean/godo

github.com/digitalocean/godo @v1.197.0

Chat with this repo
repository ↗ · DeepWiki ↗ · release v1.197.0 ↗ · + Follow
4,695 symbols 13,811 edges 157 files 2,241 documented · 48% 24 cross-repo links
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Godo

GitHub Actions CI GoDoc

Godo is a Go client library for accessing the DigitalOcean V2 API.

You can view the client API docs here: http://godoc.org/github.com/digitalocean/godo

You can view DigitalOcean API docs here: https://docs.digitalocean.com/reference/api/api-reference/

🚀 New in v1.191.0 — AI & Inference support

godo now ships first-class support for DigitalOcean's Gradient AI Platform: chat completions (with streaming), image generation, embeddings, batch inference, model listing, and more — all from the same Client. Jump to AI & Inference to get started.

Install

go get github.com/digitalocean/godo@vX.Y.Z

where X.Y.Z is the version you need.

or

go get github.com/digitalocean/godo

for non Go modules usage or latest version.

Usage

import "github.com/digitalocean/godo"

Create a new DigitalOcean client, then use the exposed services to access different parts of the DigitalOcean API.

Authentication

You can manage API tokens at the DigitalOcean Control Panel Applications Page.

package main

import (
    "github.com/digitalocean/godo"
)

func main() {
    client := godo.NewFromToken("my-digitalocean-api-token")
}

Credentials for inference APIs

What matters is the credential you pass to godo.NewFromToken, not which DigitalOcean API you call:

What you're calling What you need
Infrastructure APIs (Droplets, Kubernetes, Volumes, …) A DigitalOcean API token (PAT).
Inference APIs (Chat, Models, Embeddings, ImageGenerations, Messages, Responses, BatchInference, …) A PAT created with full access scope, or a Gradient Model Access Key.

If you only have a limited-scope PAT, infrastructure calls will work but inference calls will fail with 401. Create a new PAT with full access, or use a Model Access Key instead.

go // Either credential works with godo.NewFromToken: client := godo.NewFromToken(os.Getenv("DIGITALOCEAN_TOKEN")) // full-access PAT client := godo.NewFromToken(os.Getenv("MODEL_ACCESS_KEY")) // Gradient model access key

If you need to provide a context.Context to your new client, you should use godo.NewClient to manually construct a client instead.

AI & Inference

Talk to models on DigitalOcean's Gradient AI Platform with the same godo.Client.

The Serverless Inference API is available at https://inference.do-ai.run/. Use a DigitalOcean PAT with full access scope or a Gradient Model Access Key — see the credentials note above.

Chat completion

completion, _, err := client.Chat.Completions.New(ctx, &godo.ChatCompletionNewParams{
    Model: "llama3.3-70b-instruct",
    Messages: []godo.ChatCompletionMessage{
        godo.UserMessage("Write me a haiku"),
    },
})

List models

page, _, err := client.Models.List(ctx)
for _, m := range page.Data {
    fmt.Println(m.ID)
}

Image generation

image, _, err := client.ImageGenerations.Generate(ctx, &godo.ImageGenerateParams{
    Model:  "stable-diffusion-3.5-large",
    Prompt: "A friendly cartoon shark typing on a laptop at a sunny beach",
    N:      1,
})

For streaming, embeddings, messages, responses, async invocations, batch inference, agent inference, and full runnable programs, see examples/serverless-inference/ and examples/agent-inference/.

Examples

To create a new Droplet:

dropletName := "super-cool-droplet"

createRequest := &godo.DropletCreateRequest{
    Name:   dropletName,
    Region: "nyc3",
    Size:   "s-1vcpu-1gb",
    Image: godo.DropletCreateImage{
        Slug: "ubuntu-20-04-x64",
    },
}

ctx := context.TODO()

newDroplet, _, err := client.Droplets.Create(ctx, createRequest)

if err != nil {
    fmt.Printf("Something bad happened: %s\n\n", err)
    return err
}

Pagination

If a list of items is paginated by the API, you must request pages individually. For example, to fetch all Droplets:

func DropletList(ctx context.Context, client *godo.Client) ([]godo.Droplet, error) {
    // create a list to hold our droplets
    list := []godo.Droplet{}

    // create options. initially, these will be blank
    opt := &godo.ListOptions{}
    for {
        droplets, resp, err := client.Droplets.List(ctx, opt)
        if err != nil {
            return nil, err
        }

        // append the current page's droplets to our list
        list = append(list, droplets...)

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        page, err := resp.Links.CurrentPage()
        if err != nil {
            return nil, err
        }

        // set the page we want for the next request
        opt.Page = page + 1
    }

    return list, nil
}

Some endpoints offer token based pagination. For example, to fetch all Registry Repositories:

func ListRepositoriesV2(ctx context.Context, client *godo.Client, registryName string) ([]*godo.RepositoryV2, error) {
    // create a list to hold our registries
    list := []*godo.RepositoryV2{}

    // create options. initially, these will be blank
    opt := &godo.TokenListOptions{}
    for {
        repositories, resp, err := client.Registry.ListRepositoriesV2(ctx, registryName, opt)
        if err != nil {
            return nil, err
        }

        // append the current page's registries to our list
        list = append(list, repositories...)

        // if we are at the last page, break out the for loop
        if resp.Links == nil || resp.Links.IsLastPage() {
            break
        }

        // grab the next page token
        nextPageToken, err := resp.Links.NextPageToken()
        if err != nil {
            return nil, err
        }

        // provide the next page token for the next request
        opt.Token = nextPageToken
    }

    return list, nil
}

Automatic Retries and Exponential Backoff

The Godo client can be configured to use automatic retries and exponentional backoff for requests that fail with 429 or 500-level response codes via go-retryablehttp. To configure Godo to enable usage of go-retryablehttp, the RetryConfig.RetryMax must be set.

tokenSrc := oauth2.StaticTokenSource(&oauth2.Token{
    AccessToken: "dop_v1_xxxxxx",
})

oauth_client := oauth2.NewClient(oauth2.NoContext, tokenSrc)

waitMax := godo.PtrTo(6.0)
waitMin := godo.PtrTo(3.0)

retryConfig := godo.RetryConfig{
    RetryMax:     3,
    RetryWaitMin: waitMin,
    RetryWaitMax: waitMax,
}

client, err := godo.New(oauth_client, godo.WithRetryAndBackoffs(retryConfig))

Please refer to the RetryConfig Godo documentation for more information.

Versioning

Each version of the client is tagged and the version is updated accordingly.

To see the list of past versions, run git tag.

Documentation

For a comprehensive list of examples, check out the API documentation.

For details on all the functionality in this library, see the GoDoc documentation.

Contributing

We love pull requests! Please see the contribution guidelines.

Extension points exported contracts — how you extend this code

SpacesKeysService (Interface)
SpacesKeysService is an interface for managing Spaces keys with the DigitalOcean API. [15 implementers]
spaces_keys.go
VPCNATGatewaysService (Interface)
VPCNATGatewaysService defines an interface for managing VPC NAT Gateways through the DigitalOcean API [15 implementers]
vpc_nat_gateways.go
AccountService (Interface)
AccountService is an interface for interfacing with the Account endpoints of the DigitalOcean API See: https://docs.digi [39 …
account.go
ReservedIPV6sService (Interface)
ReservedIPV6sService is an interface for interfacing with the reserved IPV6s endpoints of the Digital Ocean API. [26 implementers]
reserved_ipv6.go
FloatingIPsService (Interface)
FloatingIPsService is an interface for interfacing with the floating IPs endpoints of the Digital Ocean API. See: https: [26 …
floating_ips.go
ResourceWithURN (Interface)
ResourceWithURN is an interface for interfacing with the types that implement the URN method. [11 implementers]
strings.go
BalanceService (Interface)
BalanceService is an interface for interfacing with the Balance endpoints of the DigitalOcean API See: https://docs.digi [39 …
balance.go
AppComponentSpec (Interface)
AppComponentSpec represents a component's spec. [6 implementers]
apps.go

Core symbols most depended-on inside this repo

Equal
called by 1204
metrics/time.go
NewRequest
called by 534
godo.go
Do
called by 534
godo.go
Get
called by 235
nfs.go
PtrTo
called by 205
godo.go
addOptions
called by 129
godo.go
NewArgError
called by 120
errors.go
Error
called by 108
errors.go

Shape

Method 2,045
Function 1,500
Struct 1,012
TypeAlias 73
Interface 61
FuncType 4

Languages

Go100%

Modules by API surface

apps_accessors_test.go553 symbols
apps_accessors.go553 symbols
gradientai.go320 symbols
databases.go275 symbols
apps.go153 symbols
apps.gen.go151 symbols
monitoring.go136 symbols
gradientai_test.go128 symbols
kubernetes.go124 symbols
registry.go105 symbols
serverless_inference.go104 symbols
databases_test.go99 symbols

Datastores touched

dbDatabase · 1 repos
defaultdbDatabase · 1 repos

For agents

$ claude mcp add godo \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact

Ask about this repo answers extend the page