# Connect to Our Document Exchange Network

Integrate ShareCredentials directly into your applications. Our RESTful API gives you full access to forms, credentials, and signature capabilities through our secure document exchange network.

[Get API Key](/content/register/index.html) [View Docs](/content/products/api#endpoints/index.html)

## Create a signature request

```bash
curl -X POST https://api.sharecredentials.com/v1/signatures \
 -H "Authorization: Bearer YOUR_API_KEY" \
 -H "Content-Type: application/json" \
 -d '{
"document_url": "https://...",
"signers": [
{
"email": "john@example.com",
"name": "John Smith"
}
]
}'
```

## Response

```json
{
"id": "sig_abc123",
"status": "pending",
"created_at": "2024-03-15T..."
}
```

## API Capabilities

Full programmatic access to the document exchange network

### Forms API

Create forms, retrieve submissions, and manage form data programmatically.

### Credentials API

Request verifications, check status, and retrieve verification reports.

### Signatures API

Send documents for signing, track status, and download signed copies.

### Webhooks

Receive real-time notifications when events occur in your account.

### OAuth 2.0

Secure authentication using industry-standard OAuth 2.0 protocol.

### 99.9% Uptime

Enterprise-grade reliability with SLA guarantees for Pro plans.

## API Endpoints

Quick reference for common operations

### Forms

- **GET** `/v1/forms`
  - List all forms in your account
- **POST** `/v1/forms`
  - Create a new form
- **GET** `/v1/forms/{id}/submissions`
  - Get form submissions

### Signatures

- **POST** `/v1/signatures`
  - Create a signature request
- **GET** `/v1/signatures/{id}`
  - Get signature request status
- **GET** `/v1/signatures/{id}/download`
  - Download signed document

### Credentials

- **POST** `/v1/verifications`
  - Request credential verification
- **GET** `/v1/verifications/{id}`
  - Get verification status

### Webhooks

- **POST** `/v1/webhooks`
  - Register a webhook endpoint
- **DELETE** `/v1/webhooks/{id}`
  - Remove a webhook

## Ready to Integrate?

Get your API key and start building on our document exchange network.

[Get API Key](/content/register/index.html)
